mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-03 20:18:01 +00:00
39 lines
650 B
C++
39 lines
650 B
C++
//
|
|
// NamespaceSupportTest.h
|
|
//
|
|
// 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
|