mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-23 16:48:06 +02:00
27 lines
605 B
C++
27 lines
605 B
C++
//
|
|
// HTTPSClientTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/NetSSL_Win/testsuite/src/HTTPSClientTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "HTTPSClientTestSuite.h"
|
|
#include "HTTPSClientSessionTest.h"
|
|
#include "HTTPSStreamFactoryTest.h"
|
|
|
|
|
|
CppUnit::Test* HTTPSClientTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("HTTPSClientTestSuite");
|
|
|
|
pSuite->addTest(HTTPSClientSessionTest::suite());
|
|
pSuite->addTest(HTTPSStreamFactoryTest::suite());
|
|
|
|
return pSuite;
|
|
}
|