1//
2// URIStreamOpenerTest.h
3//
4// Definition of the URIStreamOpenerTest 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 URIStreamOpenerTest_INCLUDED
14#define URIStreamOpenerTest_INCLUDED
15
16
17#include "Poco/Foundation.h"
18#include "Poco/CppUnit/TestCase.h"
19
20
21class URIStreamOpenerTest: public CppUnit::TestCase
22{
23public:
24 URIStreamOpenerTest(const std::string& name);
25 ~URIStreamOpenerTest();
26
27 void testStreamOpenerFile();
28 void testStreamOpenerRelative();
29 void testStreamOpenerURI();
30 void testStreamOpenerURIResolve();
31 void testStreamOpenerPath();
32 void testStreamOpenerPathResolve();
33 void testRegisterUnregister();
34
35 void setUp();
36 void tearDown();
37
38 static CppUnit::Test* suite();
39
40private:
41};
42
43
44#endif // URIStreamOpenerTest_INCLUDED
45