mirror of
https://github.com/ApfelTeeSaft/gameBase.git
synced 2026-08-26 19:23:30 +00:00
17 lines
325 B
C++
17 lines
325 B
C++
#include <cppunit/TestSuite.h>
|
|
#include <cppunit/TestResult.h>
|
|
#include <cppunit/TestCaller.h>
|
|
#include <cppunit/ui/text/TestRunner.h>
|
|
|
|
#include "luaFieldsTest.h"
|
|
|
|
using namespace CppUnit;
|
|
using namespace gameBase;
|
|
|
|
int main(){
|
|
TextUi::TestRunner runner;
|
|
runner.addTest(LuaFieldsTest::suite());
|
|
runner.run();
|
|
return 0;
|
|
}
|