poco/Util/testsuite/src/OptionSetTest.h
2017-09-09 10:50:32 +02:00

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