X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=tests%2Fmath%2FVectorTest.h;fp=tests%2Fmath%2FVectorTest.h;h=fdd2c3acae473d4be15b9970c931e7c773f04915;hb=a3ba4dc677ad7c92eeb78b20b642241563605c9d;hp=0000000000000000000000000000000000000000;hpb=ef2496b3cb7ce66b7f831278be66261834b732e5;p=l2e.git diff --git a/tests/math/VectorTest.h b/tests/math/VectorTest.h new file mode 100644 index 0000000..fdd2c3a --- /dev/null +++ b/tests/math/VectorTest.h @@ -0,0 +1,36 @@ +#ifndef TEST_MATH_VECTORTEST_H_ +#define TEST_MATH_VECTORTEST_H_ + +#include "../../src/math/Vector.h" + +#include + + +namespace test_math { + +class VectorTest +: public CppUnit::TestFixture { + +CPPUNIT_TEST_SUITE(VectorTest); +CPPUNIT_TEST(testComparison); +CPPUNIT_TEST(testSum); +CPPUNIT_TEST(testProduct); +CPPUNIT_TEST(testModulo); +CPPUNIT_TEST(testFunctional); +CPPUNIT_TEST_SUITE_END(); + +public: + void setUp(); + void tearDown(); + + void testComparison(); + void testSum(); + void testProduct(); + void testModulo(); + void testFunctional(); + +}; + +} + +#endif