mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-26 03:23:05 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
41 lines
667 B
C++
41 lines
667 B
C++
//
|
|
// MemoryPoolTest.h
|
|
//
|
|
// $Id: //poco/1.4/Foundation/testsuite/src/MemoryPoolTest.h#1 $
|
|
//
|
|
// Definition of the MemoryPoolTest class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef MemoryPoolTest_INCLUDED
|
|
#define MemoryPoolTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Foundation.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class MemoryPoolTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
MemoryPoolTest(const std::string& name);
|
|
~MemoryPoolTest();
|
|
|
|
void testMemoryPool();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // MemoryPoolTest_INCLUDED
|