mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 20:17:15 +01:00
29 lines
463 B
C++
29 lines
463 B
C++
|
//
|
||
|
// WinDriver.cpp
|
||
|
//
|
||
|
// Windows test driver for Poco Data.
|
||
|
//
|
||
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
||
|
// and Contributors.
|
||
|
//
|
||
|
// SPDX-License-Identifier: BSL-1.0
|
||
|
//
|
||
|
|
||
|
|
||
|
#include "WinTestRunner/WinTestRunner.h"
|
||
|
#include "DataTestSuite.h"
|
||
|
|
||
|
|
||
|
class TestDriver: public CppUnit::WinTestRunnerApp
|
||
|
{
|
||
|
void TestMain()
|
||
|
{
|
||
|
CppUnit::WinTestRunner runner;
|
||
|
runner.addTest(DataTestSuite::suite());
|
||
|
runner.run();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
|
||
|
TestDriver theDriver;
|