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