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);