1//
2// TCPServerTestSuite.cpp
3//
4// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
5// and Contributors.
6//
7// SPDX-License-Identifier: BSL-1.0
8//
9
10
11#include "TCPServerTestSuite.h"
12#include "TCPServerTest.h"
13
14
15CppUnit::Test* TCPServerTestSuite::suite()
16{
17 CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("TCPServerTestSuite");
18
19 pSuite->addTest(TCPServerTest::suite());
20
21 return pSuite;
22}
23