mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-02 11:38:08 +00:00
39 lines
630 B
C++
39 lines
630 B
C++
//
|
|
// HelpFormatterTest.h
|
|
//
|
|
// Definition of the HelpFormatterTest class.
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef HelpFormatterTest_INCLUDED
|
|
#define HelpFormatterTest_INCLUDED
|
|
|
|
|
|
#include "Poco/Util/Util.h"
|
|
#include "Poco/CppUnit/TestCase.h"
|
|
|
|
|
|
class HelpFormatterTest: public CppUnit::TestCase
|
|
{
|
|
public:
|
|
HelpFormatterTest(const std::string& name);
|
|
~HelpFormatterTest();
|
|
|
|
void testHelpFormatter();
|
|
|
|
void setUp();
|
|
void tearDown();
|
|
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
};
|
|
|
|
|
|
#endif // HelpFormatterTest_INCLUDED
|