mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-10 16:28:13 +01:00
39 lines
594 B
C++
39 lines
594 B
C++
//
|
|
// OptionSetTest.h
|
|
//
|
|
// Definition of the OptionSetTest class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef OptionSetTest_INCLUDED
|
|
#define OptionSetTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Util/Util.h"
|
|
#include "Poco/CppUnit/TestCase.h"
|
|
|
|
|
|
class OptionSetTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
OptionSetTest(const std::string& name);
|
|
~OptionSetTest();
|
|
|
|
void testOptionSet();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // OptionSetTest_INCLUDED
|