1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-03-29 15:37:12 +01:00
2023-03-23 20:19:11 +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;