mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
39 lines
644 B
C++
39 lines
644 B
C++
//
|
|
// AutoReleasePoolTest.h
|
|
//
|
|
// Definition of the AutoReleasePoolTest class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef AutoReleasePoolTest_INCLUDED
|
|
#define AutoReleasePoolTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class AutoReleasePoolTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
AutoReleasePoolTest(const std::string& name);
|
|
~AutoReleasePoolTest();
|
|
|
|
void testAutoReleasePool();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // AutoReleasePoolTest_INCLUDED
|