1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-07 21:37:14 +01:00
SqMod/vendor/POCO/PDF/testsuite/src/WinDriver.cpp

29 lines
460 B
C++
Raw Normal View History

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