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