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