WinDriver.cpp 478 B

12345678910111213141516171819202122232425262728
  1. //
  2. // WinDriver.cpp
  3. //
  4. // Windows test driver for Poco CppParser.
  5. //
  6. // Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
  7. // and Contributors.
  8. //
  9. // SPDX-License-Identifier: BSL-1.0
  10. //
  11. #include "WinTestRunner/WinTestRunner.h"
  12. #include "CppParserTestSuite.h"
  13. class TestDriver: public CppUnit::WinTestRunnerApp
  14. {
  15. void TestMain()
  16. {
  17. CppUnit::WinTestRunner runner;
  18. runner.addTest(CppParserTestSuite::suite());
  19. runner.run();
  20. }
  21. };
  22. TestDriver theDriver;