mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-26 18:42:41 +01:00
30 lines
494 B
C++
30 lines
494 B
C++
//
|
|
// OptionsTestSuite.h
|
|
//
|
|
// $Id: //poco/1.4/Util/testsuite/src/OptionsTestSuite.h#1 $
|
|
//
|
|
// Definition of the OptionsTestSuite class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef OptionsTestSuite_INCLUDED
|
|
#define OptionsTestSuite_INCLUDED
|
|
|
|
|
|
#include "Poco/CppUnit/TestSuite.h"
|
|
|
|
|
|
class OptionsTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // OptionsTestSuite_INCLUDED
|