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