poco/Foundation/testsuite/src/URIStreamOpenerTest.h

47 lines
916 B
C
Raw Normal View History

2012-04-29 20:52:25 +02:00
//
// URIStreamOpenerTest.h
//
// $Id: //poco/1.4/Foundation/testsuite/src/URIStreamOpenerTest.h#1 $
//
// Definition of the URIStreamOpenerTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
2012-04-29 20:52:25 +02:00
//
#ifndef URIStreamOpenerTest_INCLUDED
#define URIStreamOpenerTest_INCLUDED
#include "Poco/Foundation.h"
#include "CppUnit/TestCase.h"
class URIStreamOpenerTest: public CppUnit::TestCase
{
public:
URIStreamOpenerTest(const std::string& name);
~URIStreamOpenerTest();
void testStreamOpenerFile();
void testStreamOpenerRelative();
void testStreamOpenerURI();
void testStreamOpenerURIResolve();
void testStreamOpenerPath();
void testStreamOpenerPathResolve();
void testRegisterUnregister();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // URIStreamOpenerTest_INCLUDED