1//
2// ParserWriterTest.h
3//
4// Definition of the ParserWriterTest 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 ParserWriterTest_INCLUDED
14#define ParserWriterTest_INCLUDED
15
16
17#include "Poco/XML/XML.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class ParserWriterTest: public CppUnit::TestCase
22{
23public:
24 ParserWriterTest(const std::string& name);
25 ~ParserWriterTest();
26
27 void testParseWriteXHTML();
28 void testParseWriteXHTML2();
29 void testParseWriteWSDL();
30 void testParseWriteSimple();
31
32 void setUp();
33 void tearDown();
34
35 static CppUnit::Test* suite();
36
37private:
38 static const std::string XHTML;
39 static const std::string XHTML2;
40};
41
42
43#endif // ParserWriterTest_INCLUDED
44