mirror of
https://github.com/pocoproject/poco.git
synced 2025-05-02 07:31:37 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
31 lines
542 B
C++
31 lines
542 B
C++
//
|
|
// WinDriver.cpp
|
|
//
|
|
// $Id: //poco/1.3/CppParser/testsuite/src/WinDriver.cpp#1 $
|
|
//
|
|
// Windows test driver for Poco CppParser.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "WinTestRunner/WinTestRunner.h"
|
|
#include "CppParserTestSuite.h"
|
|
|
|
|
|
class TestDriver: public CppUnit::WinTestRunnerApp
|
|
{
|
|
void TestMain()
|
|
{
|
|
CppUnit::WinTestRunner runner;
|
|
runner.addTest(CppParserTestSuite::suite());
|
|
runner.run();
|
|
}
|
|
};
|
|
|
|
|
|
TestDriver theDriver;
|