# | Line 4 | Line 4 | |
---|---|---|
4 | #include <cppunit/extensions/HelperMacros.h> | |
5 | #include "math/SquareMatrix.hpp" | |
6 | ||
7 | < | using namespace oopse; |
7 | > | using namespace OpenMD; |
8 | ||
9 | typedef SquareMatrix<double, 3> SMat3x3; | |
10 | ||
# | Line 12 | Line 12 | class SquareMatrixTestCase : public CPPUNIT_NS::TestFi | |
12 | CPPUNIT_TEST_SUITE( SquareMatrixTestCase ); | |
13 | CPPUNIT_TEST(testConstructor); | |
14 | CPPUNIT_TEST(testIdentity); | |
15 | < | CPPUNIT_TEST(testInverse); |
16 | < | CPPUNIT_TEST(testDeterminant); |
15 | > | CPPUNIT_TEST(testJacobi); |
16 | CPPUNIT_TEST(testTrace); | |
17 | CPPUNIT_TEST(testIsSymmertric); | |
18 | CPPUNIT_TEST(testIsOrthogonal); | |
# | Line 26 | Line 25 | class SquareMatrixTestCase : public CPPUNIT_NS::TestFi | |
25 | ||
26 | void testConstructor(); | |
27 | void testIdentity(); | |
28 | < | void testInverse(); |
30 | < | void testDeterminant(); |
28 | > | void testJacobi(); |
29 | void testTrace(); | |
30 | void testIsSymmertric(); | |
31 | void testIsOrthogonal(); |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |