mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-31 18:07:14 +01:00
39 lines
554 B
C
39 lines
554 B
C
|
//
|
||
|
// ClockTest.h
|
||
|
//
|
||
|
// Definition of the ClockTest class.
|
||
|
//
|
||
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef ClockTest_INCLUDED
|
||
|
#define ClockTest_INCLUDED
|
||
|
|
||
|
|
||
|
#include "Poco/Foundation.h"
|
||
|
#include "CppUnit/TestCase.h"
|
||
|
|
||
|
|
||
|
class ClockTest: public CppUnit::TestCase
|
||
|
{
|
||
|
public:
|
||
|
ClockTest(const std::string& name);
|
||
|
~ClockTest();
|
||
|
|
||
|
void testClock();
|
||
|
|
||
|
void setUp();
|
||
|
void tearDown();
|
||
|
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // ClockTest_INCLUDED
|