1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 20:17:15 +01:00
SqMod/vendor/POCO/Data/testsuite/src/WinDriver.cpp

29 lines
463 B
C++
Raw Normal View History

//
// 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;