# | Line 4 | Line 4 | |
---|---|---|
4 | #include <cppunit/extensions/HelperMacros.h> | |
5 | #include "math/Vector.hpp" | |
6 | ||
7 | < | using namespace oopse; |
7 | > | using namespace OpenMD; |
8 | ||
9 | typedef Vector<double, 4> Vec4; | |
10 | ||
# | Line 13 | Line 13 | class VectorTestCase : public CPPUNIT_NS::TestFixture | |
13 | CPPUNIT_TEST(testConstructors); | |
14 | CPPUNIT_TEST(testArithmetic); | |
15 | CPPUNIT_TEST(testAccessEntries); | |
16 | + | CPPUNIT_TEST(testOtherMemberFunctions); |
17 | CPPUNIT_TEST(testOtherTemplateFunctions); | |
18 | CPPUNIT_TEST_SUITE_END(); | |
19 | ||
# | Line 23 | Line 24 | class VectorTestCase : public CPPUNIT_NS::TestFixture | |
24 | void testArithmetic(); | |
25 | void testOperators(); | |
26 | void testAccessEntries(); | |
27 | + | void testOtherMemberFunctions(); |
28 | void testOtherTemplateFunctions(); | |
29 | ||
30 | private: |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |