mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-07 09:30:04 +02:00
30 lines
484 B
C++
30 lines
484 B
C++
//
|
|
// ODBCTestSuite.h
|
|
//
|
|
// Definition of the ODBCTestSuite class.
|
|
//
|
|
// Copyright (c) 2008, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef MySQLTestSuite_INCLUDED
|
|
#define MySQLTestSuite_INCLUDED
|
|
|
|
|
|
#include "CppUnit/TestSuite.h"
|
|
|
|
class MySQLTestSuite
|
|
{
|
|
public:
|
|
static CppUnit::Test* suite();
|
|
|
|
private:
|
|
static void addTest(CppUnit::TestSuite* pSuite, CppUnit::Test* pT);
|
|
};
|
|
|
|
|
|
#endif // MySQLTestSuite_INCLUDED
|