1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-07 13:27:13 +01:00

39 lines
590 B
C
Raw Normal View History

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