mirror of
https://github.com/pocoproject/poco.git
synced 2025-03-21 21:18:35 +01:00
29 lines
469 B
C++
29 lines
469 B
C++
//
|
|
// WinDriver.cpp
|
|
//
|
|
// Windows test driver for Poco SQLite.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "WinTestRunner/WinTestRunner.h"
|
|
#include "SQLiteTestSuite.h"
|
|
|
|
|
|
class TestDriver: public CppUnit::WinTestRunnerApp
|
|
{
|
|
void TestMain()
|
|
{
|
|
CppUnit::WinTestRunner runner;
|
|
runner.addTest(SQLiteTestSuite::suite());
|
|
runner.run();
|
|
}
|
|
};
|
|
|
|
|
|
TestDriver theDriver;
|