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