mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-14 11:47:15 +01:00
41 lines
611 B
C
41 lines
611 B
C
|
//
|
||
|
// AutoPtrTest.h
|
||
|
//
|
||
|
// Definition of the AutoPtrTest class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef AutoPtrTest_INCLUDED
|
||
|
#define AutoPtrTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class AutoPtrTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
AutoPtrTest(const std::string& name);
|
||
|
~AutoPtrTest();
|
||
|
|
||
|
void testAutoPtr();
|
||
|
void testOps();
|
||
|
void testMakeAuto();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // AutoPtrTest_INCLUDED
|