mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-30 05:29:41 +01:00
28 lines
466 B
C++
28 lines
466 B
C++
//
|
|
// ConfigurationTestSuite.h
|
|
//
|
|
// Definition of the ConfigurationTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef ConfigurationTestSuite_INCLUDED
|
|
#define ConfigurationTestSuite_INCLUDED
|
|
|
|
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
|
|
|
|
class ConfigurationTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // ConfigurationTestSuite_INCLUDED
|