| 1 | // |
|---|---|
| 2 | // AttributesParserTest.h |
| 3 | // |
| 4 | // Definition of the AttributesParserTest 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 AttributesParserTest_INCLUDED |
| 14 | #define AttributesParserTest_INCLUDED |
| 15 | |
| 16 | |
| 17 | #include "Poco/CppParser/CppParser.h" |
| 18 | #include "Poco/CppUnit/TestCase.h" |
| 19 | |
| 20 | |
| 21 | class AttributesParserTest: public CppUnit::TestCase |
| 22 | { |
| 23 | public: |
| 24 | AttributesParserTest(const std::string& name); |
| 25 | ~AttributesParserTest(); |
| 26 | |
| 27 | void testParser1(); |
| 28 | void testParser2(); |
| 29 | void testParser3(); |
| 30 | void testParser4(); |
| 31 | void testParser5(); |
| 32 | void testParser6(); |
| 33 | void testParser7(); |
| 34 | |
| 35 | void setUp(); |
| 36 | void tearDown(); |
| 37 | |
| 38 | static CppUnit::Test* suite(); |
| 39 | |
| 40 | private: |
| 41 | }; |
| 42 | |
| 43 | |
| 44 | #endif // AttributesParserTest_INCLUDED |
| 45 |