mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-07 21:37:14 +01:00
28 lines
444 B
C
28 lines
444 B
C
|
//
|
||
|
// HTTPSClientTestSuite.h
|
||
|
//
|
||
|
// Definition of the HTTPSClientTestSuite class.
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef HTTPSClientTestSuite_INCLUDED
|
||
|
#define HTTPSClientTestSuite_INCLUDED
|
||
|
|
||
|
|
||
|
#include "CppUnit/TestSuite.h"
|
||
|
|
||
|
|
||
|
class HTTPSClientTestSuite
|
||
|
{
|
||
|
public:
|
||
|
static CppUnit::Test* suite();
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // HTTPSClientTestSuite_INCLUDED
|