mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-25 06:07:13 +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
|