poco/Foundation/testsuite/src/LoggingFactoryTest.h
2017-09-09 11:14:06 +02:00

40 lines
649 B
C++

//
// LoggingFactoryTest.h
//
// Definition of the LoggingFactoryTest class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#ifndef LoggingFactoryTest_INCLUDED
#define LoggingFactoryTest_INCLUDED
#include "Poco/Foundation.h"
#include "CppUnit/TestCase.h"
class LoggingFactoryTest: public CppUnit::TestCase
{
public:
LoggingFactoryTest(const std::string& name);
~LoggingFactoryTest();
void testBuiltins();
void testCustom();
void setUp();
void tearDown();
static CppUnit::Test* suite();
private:
};
#endif // LoggingFactoryTest_INCLUDED