1//
2// URITest.h
3//
4// Definition of the URITest 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 URITest_INCLUDED
14#define URITest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class URITest: public CppUnit::TestCase
22{
23public:
24 URITest(const std::string& name);
25 ~URITest();
26
27 void testConstruction();
28 void testParse();
29 void testToString();
30 void testCompare();
31 void testNormalize();
32 void testResolve();
33 void testSwap();
34 void testEncodeDecode();
35 void testOther();
36 void testFromPath();
37 void testQueryParameters();
38
39 void setUp();
40 void tearDown();
41
42 static CppUnit::Test* suite();
43
44private:
45};
46
47
48#endif // URITest_INCLUDED
49