1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-02-12 07:47:12 +01:00

29 lines
481 B
C++
Raw Normal View History

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