Playing around with Igloo unit testing.

This commit is contained in:
Brian 2014-02-20 12:41:43 -07:00
parent d342bd21ee
commit db0ac63215
3 changed files with 28 additions and 6 deletions

View file

@ -1,13 +1,13 @@
#include "math/Vector3.h"
// Testing Headers
#include <igloo/igloo_alt.h>
using namespace igloo;
// Testing headers:
#include "tests/TestsVector3.h"
int main()
int main( int argc, const char* argv[ ] )
{
return 0;
return TestRunner::RunAllTests( argc, const_cast< char** >( argv ) );
}