mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-24 05:37:14 +01:00
39 lines
589 B
C
39 lines
589 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 "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
|