| 1 | // |
| 2 | // NamedTuplesTest.h |
| 3 | // |
| 4 | // Definition of the NamedTuplesTest 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 NamedTuplesTest_INCLUDED |
| 14 | #define NamedTuplesTest_INCLUDED |
| 15 | |
| 16 | |
| 17 | #include "Poco/Foundation.h" |
| 18 | #include "Poco/CppUnit/TestCase.h" |
| 19 | |
| 20 | |
| 21 | class NamedTuplesTest: public CppUnit::TestCase |
| 22 | { |
| 23 | public: |
| 24 | NamedTuplesTest(const std::string& name); |
| 25 | ~NamedTuplesTest(); |
| 26 | |
| 27 | void testNamedTuple1(); |
| 28 | void testNamedTuple2(); |
| 29 | void testNamedTuple3(); |
| 30 | void testNamedTuple4(); |
| 31 | void testNamedTuple5(); |
| 32 | void testNamedTuple6(); |
| 33 | void testNamedTuple7(); |
| 34 | void testNamedTuple8(); |
| 35 | void testNamedTuple9(); |
| 36 | void testNamedTuple10(); |
| 37 | void testNamedTuple11(); |
| 38 | void testNamedTuple12(); |
| 39 | void testNamedTuple13(); |
| 40 | void testNamedTuple14(); |
| 41 | void testNamedTuple15(); |
| 42 | void testNamedTuple16(); |
| 43 | void testNamedTuple17(); |
| 44 | void testNamedTuple18(); |
| 45 | void testNamedTuple19(); |
| 46 | void testNamedTuple20(); |
| 47 | void testNamedTuple21(); |
| 48 | void testNamedTuple22(); |
| 49 | void testNamedTuple23(); |
| 50 | void testNamedTuple24(); |
| 51 | void testNamedTuple25(); |
| 52 | void testNamedTuple26(); |
| 53 | void testNamedTuple27(); |
| 54 | void testNamedTuple28(); |
| 55 | void testNamedTuple29(); |
| 56 | void testNamedTuple30(); |
| 57 | |
| 58 | void setUp(); |
| 59 | void tearDown(); |
| 60 | |
| 61 | static CppUnit::Test* suite(); |
| 62 | |
| 63 | private: |
| 64 | }; |
| 65 | |
| 66 | |
| 67 | #endif // NamedTuplesTest_INCLUDED |
| 68 | |