mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-10-31 18:47:47 +00:00
* FTPSClientSession Add class to support FTPS (explicit FTP over SSL). Testcase done but just TestSuite_x64_vs140.vcxproj modified * FTPS project file Added FTPS files to v140 project * FTPS makefile Added FTPS file to makefile * testsuit compile Fix compile of testsuite * comment misspelled checked misspelled comment, and re-add WebSocket testsuite * remove warning reorder constructor inizializzations in order to remove gcc -Wreorder warning * testsuite compile Correct Makefile in testsuite * Makefile testsuite add DialogServer to testsuite makefile * test build fix build of testsuite * add FTPSStreamFactory * vs140 32bit * build and test for vs150
35 lines
815 B
C++
35 lines
815 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"
|
|
#include "FTPSClientTestSuite.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());
|
|
pSuite->addTest(FTPSClientTestSuite::suite());
|
|
|
|
return pSuite;
|
|
}
|