1 | // |
---|---|
2 | // ConfigurationMapperTest.h |
3 | // |
4 | // Definition of the ConfigurationMapperTest 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 ConfigurationMapperTest_INCLUDED |
14 | #define ConfigurationMapperTest_INCLUDED |
15 | |
16 | |
17 | #include "AbstractConfigurationTest.h" |
18 | #include "Poco/Util/Util.h" |
19 | |
20 | |
21 | class ConfigurationMapperTest: public AbstractConfigurationTest |
22 | { |
23 | public: |
24 | ConfigurationMapperTest(const std::string& name); |
25 | virtual ~ConfigurationMapperTest(); |
26 | |
27 | void testMapper1(); |
28 | void testMapper2(); |
29 | void testMapper3(); |
30 | void testMapper4(); |
31 | |
32 | void setUp(); |
33 | void tearDown(); |
34 | |
35 | static CppUnit::Test* suite(); |
36 | |
37 | private: |
38 | virtual Poco::Util::AbstractConfiguration::Ptr allocConfiguration() const; |
39 | }; |
40 | |
41 | |
42 | #endif // ConfigurationMapperTest_INCLUDED |
43 |