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