mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
28 lines
408 B
C++
28 lines
408 B
C++
//
|
|
// TimerTestSuite.h
|
|
//
|
|
// Definition of the TimerTestSuite class.
|
|
//
|
|
// Copyright (c) 2009, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef TimerTestSuite_INCLUDED
|
|
#define TimerTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
|
|
class TimerTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
};
|
|
|
|
|
|
#endif // TimerTestSuite_INCLUDED
|