1//
2// NameTest.h
3//
4// Definition of the NameTest class.
5//
6// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
7// and Contributors.
8//
9// SPDX-License-Identifier: BSL-1.0
10//
11
12
13#ifndef NameTest_INCLUDED
14#define NameTest_INCLUDED
15
16
17#include "Poco/XML/XML.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class NameTest: public CppUnit::TestCase
22{
23public:
24 NameTest(const std::string& name);
25 ~NameTest();
26
27 void testSplit();
28 void testLocalName();
29 void testPrefix();
30 void testName();
31 void testCompare();
32 void testSwap();
33
34 void setUp();
35 void tearDown();
36
37 static CppUnit::Test* suite();
38
39private:
40};
41
42
43#endif // NameTest_INCLUDED
44