mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-27 19:10:20 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
27 lines
604 B
C++
27 lines
604 B
C++
//
|
|
// HTTPSClientTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/NetSSL_OpenSSL/testsuite/src/HTTPSClientTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2006, 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;
|
|
}
|