mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-21 04:58:20 +01:00
28 lines
414 B
C++
28 lines
414 B
C++
//
|
|
// NetSSLTestSuite.h
|
|
//
|
|
// Definition of the NetSSLTestSuite class.
|
|
//
|
|
// Copyright (c) 2006, 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
|