mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-08 09:51:48 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
42 lines
698 B
C++
42 lines
698 B
C++
//
|
|
// NodeAppenderTest.h
|
|
//
|
|
// $Id: //poco/1.4/XML/testsuite/src/NodeAppenderTest.h#1 $
|
|
//
|
|
// Definition of the NodeAppenderTest class.
|
|
//
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef NodeAppenderTest_INCLUDED
|
|
#define NodeAppenderTest_INCLUDED
|
|
|
|
|
|
#include "Poco/XML/XML.h"
|
|
#include "CppUnit/TestCase.h"
|
|
|
|
|
|
class NodeAppenderTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
NodeAppenderTest(const std::string& name);
|
|
~NodeAppenderTest();
|
|
|
|
void testAppendNode();
|
|
void testAppendNodeList();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // NodeAppenderTest_INCLUDED
|