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