mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-27 02:39:59 +01:00
28 lines
407 B
C++
28 lines
407 B
C++
//
|
|
// HTMLTestSuite.h
|
|
//
|
|
// Definition of the HTMLTestSuite class.
|
|
//
|
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef HTMLTestSuite_INCLUDED
|
|
#define HTMLTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class HTMLTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // HTMLTestSuite_INCLUDED
|