mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-29 20:59:45 +01:00
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
25 lines
451 B
C++
25 lines
451 B
C++
//
|
|
// TimerTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/Util/testsuite/src/TimerTestSuite.cpp#1 $
|
|
//
|
|
// Copyright (c) 2009, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "TimerTestSuite.h"
|
|
#include "TimerTest.h"
|
|
|
|
|
|
CppUnit::Test* TimerTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("TimerTestSuite");
|
|
|
|
pSuite->addTest(TimerTest::suite());
|
|
|
|
return pSuite;
|
|
}
|