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