ClickHouse/contrib/libpoco/Foundation/testsuite/src/ClockTest.h

41 lines
617 B
C++

//
// ClockTest.h
//
// $Id: //poco/1.4/Foundation/testsuite/src/ClockTest.h#1 $
//
// 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