| 1 | // |
| 2 | // TypeListTest.h |
| 3 | // |
| 4 | // Definition of the TypeListTest class. |
| 5 | // |
| 6 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
| 7 | // and Contributors. |
| 8 | // |
| 9 | // SPDX-License-Identifier: BSL-1.0 |
| 10 | // |
| 11 | |
| 12 | |
| 13 | #ifndef TypeListTest_INCLUDED |
| 14 | #define TypeListTest_INCLUDED |
| 15 | |
| 16 | |
| 17 | #include "Poco/Foundation.h" |
| 18 | #include "Poco/CppUnit/TestCase.h" |
| 19 | |
| 20 | |
| 21 | class TypeListTest: public CppUnit::TestCase |
| 22 | { |
| 23 | public: |
| 24 | TypeListTest(const std::string& name); |
| 25 | ~TypeListTest(); |
| 26 | |
| 27 | void testTypeList(); |
| 28 | void setUp(); |
| 29 | void tearDown(); |
| 30 | |
| 31 | static CppUnit::Test* suite(); |
| 32 | |
| 33 | private: |
| 34 | }; |
| 35 | |
| 36 | |
| 37 | #endif // TypeListTest_INCLUDED |
| 38 | |