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