mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 12:18:01 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
41 lines
657 B
C++
41 lines
657 B
C++
//
|
|
// ChildNodesTest.h
|
|
//
|
|
// $Id: //poco/1.4/XML/testsuite/src/ChildNodesTest.h#1 $
|
|
//
|
|
// 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
|