mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 03:08:31 +01:00
28 lines
437 B
C++
28 lines
437 B
C++
//
|
|
// TCPServerTestSuite.h
|
|
//
|
|
// Definition of the TCPServerTestSuite class.
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef TCPServerTestSuite_INCLUDED
|
|
#define TCPServerTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class TCPServerTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // TCPServerTestSuite_INCLUDED
|