Add MathEngineTest and Commects and clean ups

This commit is contained in:
2018-08-18 20:50:06 -04:00
parent bd3c111fa1
commit a815367c9d
52 changed files with 386 additions and 144 deletions
+9 -9
View File
@@ -28,9 +28,14 @@ see license.txt for details
/*** Utility Engine Test ***/
#include "UtilityEngineTest/UtilityEngineTest.hpp"
/*** Math Engine Test ***/
#include "MathEngineTest/MathEngineTest.hpp"
/*** GUI Engine Test ***/
#include "GUIEngineTest/GUIXMLTest.hpp"
#include <string>
using UtilityEngine::cString;
void CleanUp()
@@ -43,19 +48,16 @@ int main(int argc, char *argv[])
argc, argv;
printf(cString("TrooperEngine V") + TrooperEngineCore::cTrooperEngineCore::Version() + "\n");
VideoEngineTest();
UtilityEngineTest();
UtilityEngineTest();
MathEngineTest();
GUIXMLTest();
//GUIXMLTest();
//ImageTest();
UTest::OverAllReport();
SDL_Event event;
@@ -90,7 +92,5 @@ int main(int argc, char *argv[])
CleanUp();
//system("pause");
return 0;
}