mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-02-12 15:57:12 +01:00
28 lines
465 B
C
28 lines
465 B
C
|
//
|
||
|
// PostgreSQLTestSuite.h
|
||
|
//
|
||
|
// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#ifndef PostgreSQLTestSuite_INCLUDED
|
||
|
#define PostgreSQLTestSuite_INCLUDED
|
||
|
|
||
|
|
||
|
#include "CppUnit/TestSuite.h"
|
||
|
|
||
|
class PostgreSQLTestSuite
|
||
|
{
|
||
|
public:
|
||
|
static CppUnit::Test* suite();
|
||
|
|
||
|
private:
|
||
|
static void addTest(CppUnit::TestSuite* pSuite, CppUnit::Test* pT);
|
||
|
};
|
||
|
|
||
|
|
||
|
#endif // PostgreSQLTestSuite_INCLUDED
|