mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 21:37:14 +01:00
39 lines
635 B
C
39 lines
635 B
C
|
//
|
||
|
// DynamicFactoryTest.h
|
||
|
//
|
||
|
// Definition of the DynamicFactoryTest class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef DynamicFactoryTest_INCLUDED
|
||
|
#define DynamicFactoryTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class DynamicFactoryTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
DynamicFactoryTest(const std::string& name);
|
||
|
~DynamicFactoryTest();
|
||
|
|
||
|
void testDynamicFactory();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // DynamicFactoryTest_INCLUDED
|