mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-31 00:04:36 +02:00
25 lines
504 B
C++
25 lines
504 B
C++
//
|
|
// HTTPSServerTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/NetSSL_Win/testsuite/src/HTTPSServerTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "HTTPSServerTestSuite.h"
|
|
#include "HTTPSServerTest.h"
|
|
|
|
|
|
CppUnit::Test* HTTPSServerTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("HTTPSServerTestSuite");
|
|
|
|
pSuite->addTest(HTTPSServerTest::suite());
|
|
|
|
return pSuite;
|
|
}
|