2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
// ClassLoaderTest.h
|
|
|
|
//
|
|
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/ClassLoaderTest.h#1 $
|
|
|
|
//
|
|
|
|
// Definition of the ClassLoaderTest class.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-29 20:52:25 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef ClassLoaderTest_INCLUDED
|
|
|
|
#define ClassLoaderTest_INCLUDED
|
|
|
|
|
|
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
|
|
#include "CppUnit/TestCase.h"
|
2013-06-03 06:01:28 +02:00
|
|
|
|
2012-04-29 20:52:25 +02:00
|
|
|
|
|
|
|
class ClassLoaderTest: public CppUnit::TestCase
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
ClassLoaderTest(const std::string& name);
|
|
|
|
~ClassLoaderTest();
|
|
|
|
|
|
|
|
void testClassLoader1();
|
|
|
|
void testClassLoader2();
|
|
|
|
void testClassLoader3();
|
|
|
|
|
|
|
|
void setUp();
|
|
|
|
void tearDown();
|
|
|
|
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // ClassLoaderTest_INCLUDED
|