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