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

39 lines
596 B
C
Raw Normal View History

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