Files
poco/Data/MySQL/testsuite/src/MySQLTestSuite.cpp
Günter Obiltschnig 04e7e04d4d Remove \$Id`$ headers
2017-09-09 11:14:06 +02:00

27 lines
506 B
C++

//
// ODBCTestSuite.cpp
//
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "MySQLTestSuite.h"
#include "MySQLTest.h"
CppUnit::Test* MySQLTestSuite::suite()
{
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("MySQLTestSuite");
addTest(pSuite, MySQLTest::suite());
return pSuite;
}
void MySQLTestSuite::addTest(CppUnit::TestSuite* pSuite, CppUnit::Test* pT)
{
if (pSuite && pT) pSuite->addTest(pT);
}