forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbstractConfigurationTest.h
More file actions
92 lines (77 loc) · 2.59 KB
/
AbstractConfigurationTest.h
File metadata and controls
92 lines (77 loc) · 2.59 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//
// AbstractConfigurationTest.h
//
// $Id: //poco/1.4/Util/testsuite/src/AbstractConfigurationTest.h#1 $
//
// Definition of the AbstractConfigurationTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef AbstractConfigurationTest_INCLUDED
#define AbstractConfigurationTest_INCLUDED
#include "Poco/Util/Util.h"
#include "CppUnit/TestCase.h"
#include "Poco/AutoPtr.h"
#include "Poco/Util/AbstractConfiguration.h"
class AbstractConfigurationTest: public CppUnit::TestCase
{
public:
AbstractConfigurationTest(const std::string& name);
virtual ~AbstractConfigurationTest();
void testHasProperty();
void testGetString();
void testGetInt();
void testGetInt64();
void testGetDouble();
void testGetBool();
void testExpand();
void testSetString();
void testSetInt();
void testSetUInt();
void testSetInt64();
void testSetUInt64();
void testSetDouble();
void testSetBool();
void testKeys();
void testRemove();
void testChangeEvents();
void testRemoveEvents();
void setUp();
void tearDown();
void onPropertyChanging(const void*, Poco::Util::AbstractConfiguration::KeyValue& kv);
void onPropertyChanged(const void*, const Poco::Util::AbstractConfiguration::KeyValue& kv);
void onPropertyRemoving(const void*, const std::string& key);
void onPropertyRemoved(const void*, const std::string& key);
protected:
virtual Poco::Util::AbstractConfiguration* allocConfiguration() const = 0;
virtual Poco::AutoPtr<Poco::Util::AbstractConfiguration> createConfiguration() const;
std::string _changingKey;
std::string _changingValue;
std::string _changedKey;
std::string _changedValue;
std::string _removingKey;
std::string _removedKey;
};
#define AbstractConfigurationTest_addTests(suite, cls) \
do { \
CppUnit_addTest(suite, cls, testHasProperty); \
CppUnit_addTest(suite, cls, testGetString); \
CppUnit_addTest(suite, cls, testGetInt); \
CppUnit_addTest(suite, cls, testGetInt64); \
CppUnit_addTest(suite, cls, testGetDouble); \
CppUnit_addTest(suite, cls, testGetBool); \
CppUnit_addTest(suite, cls, testExpand); \
CppUnit_addTest(suite, cls, testSetString); \
CppUnit_addTest(suite, cls, testSetInt); \
CppUnit_addTest(suite, cls, testSetInt64); \
CppUnit_addTest(suite, cls, testSetDouble); \
CppUnit_addTest(suite, cls, testSetBool); \
CppUnit_addTest(suite, cls, testKeys); \
CppUnit_addTest(suite, cls, testRemove); \
CppUnit_addTest(suite, cls, testChangeEvents); \
CppUnit_addTest(suite, cls, testRemoveEvents); \
} while(0)
#endif // AbstractConfigurationTest_INCLUDED