From b642211025cd101d19db42d97edc3f5de72cb3f0 Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Fri, 10 Apr 2009 15:35:23 +0000 Subject: [PATCH] git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@122 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp b/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp index 95cf25ed..bceb9aff 100644 --- a/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp +++ b/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp @@ -19,6 +19,7 @@ // Libraries #include #include "TestSuite/Suite.h" +#include "testing_mathematics/MathematicsTest.h" #include "testing_mathematics/VectorTest.h" #include "testing_mathematics/Vector3DTest.h" #include "testing_mathematics/MatrixTest.h" @@ -38,6 +39,7 @@ int main() { Suite reactphysics3DTestSuite("ReactPhysics3D TestSuite"); // Mathematics tests + reactphysics3DTestSuite.addTest(new MathematicsTest); reactphysics3DTestSuite.addTest(new VectorTest); reactphysics3DTestSuite.addTest(new Vector3DTest); reactphysics3DTestSuite.addTest(new MatrixTest);