Files
poco/Util/testsuite/src/WinDriver.cpp
Günter Obiltschnig 06373b5d0c remove '$Id$' headers
2017-09-09 10:50:32 +02:00

29 lines
468 B
C++

//
// WinDriver.cpp
//
// Windows test driver for Poco Util.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
//
#include "WinTestRunner/WinTestRunner.h"
#include "UtilTestSuite.h"
class TestDriver: public CppUnit::WinTestRunnerApp
{
void TestMain()
{
CppUnit::WinTestRunner runner;
runner.addTest(UtilTestSuite::suite());
runner.run();
}
};
TestDriver theDriver;