mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-20 21:08:34 +02:00

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