1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-08 05:47:14 +01:00
SqMod/vendor/POCO/XML/testsuite/src/NamePoolTest.h

39 lines
578 B
C
Raw Normal View History

//
// NamePoolTest.h
//
// Definition of the NamePoolTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef NamePoolTest_INCLUDED
#define NamePoolTest_INCLUDED
#include "Poco/XML/XML.h"
#include "CppUnit/TestCase.h"
class NamePoolTest: public CppUnit::TestCase
{
public:
NamePoolTest(const std::string& name);
~NamePoolTest();
void testNamePool();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // NamePoolTest_INCLUDED