mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-28 19:51:58 +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
|