add postgresql

This commit is contained in:
Alex Fabijanic
2018-05-07 15:28:38 +00:00
parent 55e56b668d
commit f75bc3e00d
101 changed files with 20875 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
//
// 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 "Poco/CppUnit/TestSuite.h"
class PostgreSQLTestSuite
{
public:
static CppUnit::Test* suite();
private:
static void addTest(CppUnit::TestSuite* pSuite, CppUnit::Test* pT);
};
#endif // PostgreSQLTestSuite_INCLUDED