mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-23 13:32:11 +01:00
28 lines
401 B
C++
28 lines
401 B
C++
//
|
|
// NetTestSuite.h
|
|
//
|
|
// Definition of the NetTestSuite class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef NetTestSuite_INCLUDED
|
|
#define NetTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class NetTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // NetTestSuite_INCLUDED
|