mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-09 11:17:31 +01:00
23 lines
416 B
C++
23 lines
416 B
C++
//
|
|
// TCPServerTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2006-2014, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "TCPServerTestSuite.h"
|
|
#include "TCPServerTest.h"
|
|
|
|
|
|
CppUnit::Test* TCPServerTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("TCPServerTestSuite");
|
|
|
|
pSuite->addTest(TCPServerTest::suite());
|
|
|
|
return pSuite;
|
|
}
|