1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
/***************************************************************************
Unit test runner
***************************************************************************/
#include "Private.h"
#include "TextureUtil.h"
#include <iostream>
#if EM_UNIT_TEST
#include <cppunit/ui/text/TestRunner.h>
#include "Private.h"
#include "SrcTest.h"
#include "BaseTest.h"
#endif
/** Main */
int main(int argc, char *argv[]) {
#if EM_UNIT_TEST
CppUnit::TextUi::TestRunner runner;
runner.addTest(EMathTest::suite());
runner.addTest(LoaderTest::suite());
runner.addTest(ScriptTest::suite());
runner.addTest(StateBehaviorTest::suite());
runner.addTest(ShapeTest::suite());
runner.run();
#else
cerr << "Unittest support not found, install cppunit and reconfigure!" << endl;
#endif
return 0;
}
#if EM_USE_ALLEGRO
END_OF_MAIN();
#endif
|