mirror of
https://github.com/pocoproject/poco.git
synced 2025-04-16 06:56:41 +02:00
25 lines
459 B
C++
25 lines
459 B
C++
//
|
|
// TaskTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "TaskTestSuite.h"
|
|
#include "TaskTest.h"
|
|
#include "TaskManagerTest.h"
|
|
|
|
|
|
CppUnit::Test* TaskTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("TaskTestSuite");
|
|
|
|
pSuite->addTest(TaskTest::suite());
|
|
pSuite->addTest(TaskManagerTest::suite());
|
|
|
|
return pSuite;
|
|
}
|