1//
2// URITestSuite.cpp
3//
4// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
5// and Contributors.
6//
7// SPDX-License-Identifier: BSL-1.0
8//
9
10
11#include "URITestSuite.h"
12#include "URITest.h"
13#include "URIStreamOpenerTest.h"
14
15
16CppUnit::Test* URITestSuite::suite()
17{
18 CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("URITestSuite");
19
20 pSuite->addTest(URITest::suite());
21 pSuite->addTest(URIStreamOpenerTest::suite());
22
23 return pSuite;
24}
25