mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
13 lines
230 B
C++
13 lines
230 B
C++
#include <cppunit/TestSuite.h>
|
|
#include <cppunit/TestResult.h>
|
|
#include <cppunit/TestCaller.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
|
|
using namespace CppUnit;
|
|
|
|
int main(){
|
|
TextUi::TestRunner runner;
|
|
runner.run();
|
|
return 0;
|
|
}
|