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