From bfa558036ce01d1e7cf50c61664c8e25900c9387 Mon Sep 17 00:00:00 2001 From: "chappuis.daniel" Date: Mon, 16 Mar 2009 22:05:13 +0000 Subject: [PATCH] git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@117 92aac97c-a6ce-11dd-a772-7fcde58d38e6 --- .../reactphysics3d/testing/reactphysics3dTestSuite.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp b/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp index b6d00c1f..95cf25ed 100644 --- a/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp +++ b/sources/reactphysics3d/testing/reactphysics3dTestSuite.cpp @@ -24,6 +24,8 @@ #include "testing_mathematics/MatrixTest.h" #include "testing_mathematics/Matrix3x3Test.h" #include "testing_mathematics/QuaternionTest.h" +#include "testing_physics/TimeTest.h" +#include "testing_physics/KilogramTest.h" // Namespaces using namespace std; @@ -35,13 +37,17 @@ int main() { // ReactPhysics3D TestSuite Suite reactphysics3DTestSuite("ReactPhysics3D TestSuite"); - // Mathematics Tests + // Mathematics tests reactphysics3DTestSuite.addTest(new VectorTest); reactphysics3DTestSuite.addTest(new Vector3DTest); reactphysics3DTestSuite.addTest(new MatrixTest); reactphysics3DTestSuite.addTest(new Matrix3x3Test); reactphysics3DTestSuite.addTest(new QuaternionTest); + // Physics tests + reactphysics3DTestSuite.addTest(new TimeTest); + reactphysics3DTestSuite.addTest(new KilogramTest); + // Run the ReactPhysics3D TestSuite and display the report reactphysics3DTestSuite.run(); long nbFailures = reactphysics3DTestSuite.report();