mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-30 23:51:34 +02:00
27 lines
542 B
C++
27 lines
542 B
C++
//
|
|
// PostgreSQLTestSuite.cpp
|
|
//
|
|
// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "PostgreSQLTestSuite.h"
|
|
#include "PostgreSQLTest.h"
|
|
|
|
CppUnit::Test* PostgreSQLTestSuite::suite()
|
|
{
|
|
CppUnit::TestSuite* pSuite = new CppUnit::TestSuite("PostgreSQLTestSuite");
|
|
|
|
addTest(pSuite, PostgreSQLTest::suite());
|
|
return pSuite;
|
|
}
|
|
|
|
|
|
void PostgreSQLTestSuite::addTest(CppUnit::TestSuite* pSuite, CppUnit::Test* pT)
|
|
{
|
|
if (pSuite && pT) pSuite->addTest(pT);
|
|
}
|