mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-15 17:27:12 +01:00
23 lines
422 B
C++
23 lines
422 B
C++
|
//
|
||
|
// HTTPServerTestSuite.cpp
|
||
|
//
|
||
|
// Copyright (c) 2005-2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "HTTPServerTestSuite.h"
|
||
|
#include "HTTPServerTest.h"
|
||
|
|
||
|
|
||
|
CppUnit::Test* HTTPServerTestSuite::suite()
|
||
|
{
|
||
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("HTTPServerTestSuite");
|
||
|
|
||
|
pSuite->addTest(HTTPServerTest::suite());
|
||
|
|
||
|
return pSuite;
|
||
|
}
|