forked from pocoproject/poco
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAutoReleasePoolTest.cpp
More file actions
executable file
·106 lines (79 loc) · 1.44 KB
/
AutoReleasePoolTest.cpp
File metadata and controls
executable file
·106 lines (79 loc) · 1.44 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
//
// AutoReleasePoolTest.cpp
//
// $Id: //poco/1.4/Foundation/testsuite/src/AutoReleasePoolTest.cpp#1 $
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "AutoReleasePoolTest.h"
#include "CppUnit/TestCaller.h"
#include "CppUnit/TestSuite.h"
#include "Poco/AutoReleasePool.h"
using Poco::AutoReleasePool;
namespace
{
class TestObj
{
public:
TestObj(): _rc(1)
{
++_count;
}
void duplicate()
{
++_rc;
}
void release()
{
if (--_rc == 0)
delete this;
}
int rc() const
{
return _rc;
}
static int count()
{
return _count;
}
protected:
~TestObj()
{
--_count;
}
private:
int _rc;
static int _count;
};
int TestObj::_count = 0;
}
AutoReleasePoolTest::AutoReleasePoolTest(const std::string& name): CppUnit::TestCase(name)
{
}
AutoReleasePoolTest::~AutoReleasePoolTest()
{
}
void AutoReleasePoolTest::testAutoReleasePool()
{
AutoReleasePool<TestObj> arp;
arp.add(new TestObj);
arp.add(new TestObj);
assert (TestObj::count() == 2);
arp.release();
assert (TestObj::count() == 0);
}
void AutoReleasePoolTest::setUp()
{
}
void AutoReleasePoolTest::tearDown()
{
}
CppUnit::Test* AutoReleasePoolTest::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("AutoReleasePoolTest");
CppUnit_addTest(pSuite, AutoReleasePoolTest, testAutoReleasePool);
return pSuite;
}