poco/Prometheus/testsuite/src/WinDriver.cpp
2022-05-17 08:18:54 +02:00

29 lines
481 B
C++

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