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