mirror of
https://github.com/pocoproject/poco.git
synced 2025-06-11 00:22:14 +02:00
30 lines
488 B
C++
30 lines
488 B
C++
//
|
|
// NetSSLTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/NetSSL_Win/testsuite/src/NetSSLTestSuite.h#1 $
|
|
//
|
|
// Definition of the NetSSLTestSuite class.
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef NetSSLTestSuite_INCLUDED
|
|
#define NetSSLTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class NetSSLTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // NetSSLTestSuite_INCLUDED
|