Changes in src/vectorunittest.hpp [ef9df36:89c8b2]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/vectorunittest.hpp
ref9df36 r89c8b2 27 27 CPPUNIT_TEST ( ProjectionTest ); 28 28 CPPUNIT_TEST ( LineIntersectionTest ); 29 CPPUNIT_TEST ( VectorRotationTest ); 30 CPPUNIT_TEST ( IsInParallelepipedTest ); 29 31 CPPUNIT_TEST_SUITE_END(); 30 32 31 33 public: 32 33 34 void setUp(); 35 void tearDown(); 34 36 35 void UnityTest(); 36 void OperatorAlgebraTest(); 37 void SimpleAlgebraTest(); 38 void EuclidianScalarProductTest(); 39 void EuclidianNormTest(); 40 void EuclidianDistancesTest(); 41 void EuclidianAnglesTest(); 42 void ProjectionTest(); 43 void LineIntersectionTest(); 37 void UnityTest(); 38 void OperatorAlgebraTest(); 39 void SimpleAlgebraTest(); 40 void EuclidianScalarProductTest(); 41 void EuclidianNormTest(); 42 void EuclidianDistancesTest(); 43 void EuclidianAnglesTest(); 44 void ProjectionTest(); 45 void LineIntersectionTest(); 46 void VectorRotationTest(); 47 void IsInParallelepipedTest(); 44 48 45 49 private: 46 Vector zero; 47 Vector unit; 48 Vector otherunit; 49 Vector notunit; 50 Vector two; 50 // vector to execute tests on, may be modified during run 51 Vector fixture; 52 // never modify these during run, other tests might rely on them 53 Vector zero; 54 Vector unit; 55 Vector otherunit; 56 Vector notunit; 57 Vector two; 51 58 }; 52 59
Note:
See TracChangeset
for help on using the changeset viewer.