git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@117 92aac97c-a6ce-11dd-a772-7fcde58d38e6
This commit is contained in:
parent
13637f56fa
commit
bfa558036c
|
@ -24,6 +24,8 @@
|
||||||
#include "testing_mathematics/MatrixTest.h"
|
#include "testing_mathematics/MatrixTest.h"
|
||||||
#include "testing_mathematics/Matrix3x3Test.h"
|
#include "testing_mathematics/Matrix3x3Test.h"
|
||||||
#include "testing_mathematics/QuaternionTest.h"
|
#include "testing_mathematics/QuaternionTest.h"
|
||||||
|
#include "testing_physics/TimeTest.h"
|
||||||
|
#include "testing_physics/KilogramTest.h"
|
||||||
|
|
||||||
// Namespaces
|
// Namespaces
|
||||||
using namespace std;
|
using namespace std;
|
||||||
|
@ -35,13 +37,17 @@ int main() {
|
||||||
// ReactPhysics3D TestSuite
|
// ReactPhysics3D TestSuite
|
||||||
Suite reactphysics3DTestSuite("ReactPhysics3D TestSuite");
|
Suite reactphysics3DTestSuite("ReactPhysics3D TestSuite");
|
||||||
|
|
||||||
// Mathematics Tests
|
// Mathematics tests
|
||||||
reactphysics3DTestSuite.addTest(new VectorTest);
|
reactphysics3DTestSuite.addTest(new VectorTest);
|
||||||
reactphysics3DTestSuite.addTest(new Vector3DTest);
|
reactphysics3DTestSuite.addTest(new Vector3DTest);
|
||||||
reactphysics3DTestSuite.addTest(new MatrixTest);
|
reactphysics3DTestSuite.addTest(new MatrixTest);
|
||||||
reactphysics3DTestSuite.addTest(new Matrix3x3Test);
|
reactphysics3DTestSuite.addTest(new Matrix3x3Test);
|
||||||
reactphysics3DTestSuite.addTest(new QuaternionTest);
|
reactphysics3DTestSuite.addTest(new QuaternionTest);
|
||||||
|
|
||||||
|
// Physics tests
|
||||||
|
reactphysics3DTestSuite.addTest(new TimeTest);
|
||||||
|
reactphysics3DTestSuite.addTest(new KilogramTest);
|
||||||
|
|
||||||
// Run the ReactPhysics3D TestSuite and display the report
|
// Run the ReactPhysics3D TestSuite and display the report
|
||||||
reactphysics3DTestSuite.run();
|
reactphysics3DTestSuite.run();
|
||||||
long nbFailures = reactphysics3DTestSuite.report();
|
long nbFailures = reactphysics3DTestSuite.report();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user