1 |
tim |
114 |
#ifndef TEST_SQUAREMATRIX3TESTCASE_HPP |
2 |
|
|
#define TEST_SQUAREMATRIX3TESTCASE_HPP |
3 |
|
|
|
4 |
|
|
#include <cppunit/extensions/HelperMacros.h> |
5 |
|
|
#include "math/SquareMatrix3.hpp" |
6 |
|
|
|
7 |
|
|
using namespace oopse; |
8 |
|
|
|
9 |
|
|
class SquareMatrix3TestCase : public CPPUNIT_NS::TestFixture { |
10 |
|
|
CPPUNIT_TEST_SUITE( SquareMatrix3TestCase ); |
11 |
|
|
CPPUNIT_TEST(testSetupRotationMatrix); |
12 |
|
|
CPPUNIT_TEST(testOtherMemberFunctions); |
13 |
|
|
CPPUNIT_TEST(testTransformation); |
14 |
|
|
CPPUNIT_TEST_SUITE_END(); |
15 |
|
|
|
16 |
|
|
public: |
17 |
|
|
|
18 |
|
|
void testSetupRotationMatrix(); |
19 |
|
|
void testOtherMemberFunctions(); |
20 |
|
|
void testTransformation(); |
21 |
|
|
}; |
22 |
|
|
|
23 |
|
|
#endif //TEST_SQUAREMATRIX3TESTCASE_HPP |