--- trunk/test/math/QuaternionTestCase.hpp 2004/10/18 21:03:15 100 +++ trunk/test/math/QuaternionTestCase.hpp 2004/10/19 21:28:55 110 @@ -6,25 +6,32 @@ using namespace oopse; using namespace oopse; +typedef Vector Vec4; class QuaternionTestCase : public CPPUNIT_NS::TestFixture { CPPUNIT_TEST_SUITE( QuaternionTestCase ); CPPUNIT_TEST(testConstructors); CPPUNIT_TEST(testArithmetic); CPPUNIT_TEST(testAccessEntries); - CPPUNIT_TEST(testOtherTemplateFunctions); + CPPUNIT_TEST(testOtherMemberFunctions); CPPUNIT_TEST_SUITE_END(); public: virtual void setUp(); - virtual void tearDown(); void testConstructors(); void testArithmetic(); void testOperators(); void testAccessEntries(); - void testOtherTemplateFunctions(); + void testOtherMemberFunctions(); + private: + Quat4d q1; + Quat4d q2; + Quat4d q3; + Quat4d q4; + }; + #endif //TEST_QUATERNIONTESTCASE_HPP