mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 03:20:11 +01:00
33 lines
734 B
C++
33 lines
734 B
C++
//
|
|
// OpenSSLTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/NetSSL_OpenSSL/testsuite/src/NetSSLTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2006, 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"
|
|
#include "WebSocketTestSuite.h"
|
|
|
|
|
|
CppUnit::Test* NetSSLTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("OpenSSLTestSuite");
|
|
|
|
|
|
pSuite->addTest(HTTPSClientTestSuite::suite());
|
|
pSuite->addTest(TCPServerTestSuite::suite());
|
|
pSuite->addTest(HTTPSServerTestSuite::suite());
|
|
pSuite->addTest(WebSocketTestSuite::suite());
|
|
|
|
return pSuite;
|
|
}
|