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,28 @@
//
// WinDriver.cpp
//
// Windows test driver for Poco PostgreSQL.
//
// Copyright (c) 2015, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "WinTestRunner/WinTestRunner.h"
#include "PostgreSQLTestSuite.h"
class TestDriver: public CppUnit::WinTestRunnerApp
{
void TestMain()
{
CppUnit::WinTestRunner runner;
runner.addTest(PostgreSQLTestSuite::suite());
runner.run();
}
};
TestDriver theDriver;