mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 03:20:11 +01:00
30 lines
652 B
C++
30 lines
652 B
C++
//
|
|
// NetSSLTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/NetSSL_Win/testsuite/src/NetSSLTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "NetSSLTestSuite.h"
|
|
|
|
#include "HTTPSClientTestSuite.h"
|
|
#include "TCPServerTestSuite.h"
|
|
#include "HTTPSServerTestSuite.h"
|
|
|
|
|
|
CppUnit::Test* NetSSLTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("NetSSLTestSuite");
|
|
|
|
pSuite->addTest(HTTPSClientTestSuite::suite());
|
|
pSuite->addTest(TCPServerTestSuite::suite());
|
|
pSuite->addTest(HTTPSServerTestSuite::suite());
|
|
|
|
return pSuite;
|
|
}
|