mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-17 15:14:48 +02:00
28 lines
407 B
C++
28 lines
407 B
C++
//
|
|
// CoreTestSuite.h
|
|
//
|
|
// Definition of the CoreTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef CoreTestSuite_INCLUDED
|
|
#define CoreTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class CoreTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // CoreTestSuite_INCLUDED
|