mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-24 05:37:14 +01:00
39 lines
596 B
C
39 lines
596 B
C
|
//
|
||
|
// 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
|