git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@122 92aac97c-a6ce-11dd-a772-7fcde58d38e6

This commit is contained in:
chappuis.daniel 2009-04-10 15:35:23 +00:00
parent 06e95d0493
commit b642211025

View File

@ -19,6 +19,7 @@
// Libraries // Libraries
#include <iostream> #include <iostream>
#include "TestSuite/Suite.h" #include "TestSuite/Suite.h"
#include "testing_mathematics/MathematicsTest.h"
#include "testing_mathematics/VectorTest.h" #include "testing_mathematics/VectorTest.h"
#include "testing_mathematics/Vector3DTest.h" #include "testing_mathematics/Vector3DTest.h"
#include "testing_mathematics/MatrixTest.h" #include "testing_mathematics/MatrixTest.h"
@ -38,6 +39,7 @@ int main() {
Suite reactphysics3DTestSuite("ReactPhysics3D TestSuite"); Suite reactphysics3DTestSuite("ReactPhysics3D TestSuite");
// Mathematics tests // Mathematics tests
reactphysics3DTestSuite.addTest(new MathematicsTest);
reactphysics3DTestSuite.addTest(new VectorTest); reactphysics3DTestSuite.addTest(new VectorTest);
reactphysics3DTestSuite.addTest(new Vector3DTest); reactphysics3DTestSuite.addTest(new Vector3DTest);
reactphysics3DTestSuite.addTest(new MatrixTest); reactphysics3DTestSuite.addTest(new MatrixTest);