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