mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-24 05:37:14 +01: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
|