mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
29 lines
576 B
C++
29 lines
576 B
C++
//
|
|
// ODBCTestSuite.cpp
|
|
//
|
|
// $Id: //poco/1.4/Data/MySQL/testsuite/src/MySQLTestSuite.cpp#1 $
|
|
//
|
|
// 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);
|
|
}
|