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