Browse Source

Math: cleanup in tests.

pull/107/head
Vladimír Vondruš 11 years ago
parent
commit
fbe4330298
  1. 2
      src/Magnum/Math/Test/Matrix3Test.cpp
  2. 2
      src/Magnum/Math/Test/Matrix4Test.cpp
  3. 2
      src/Magnum/Math/Test/MatrixTest.cpp
  4. 2
      src/Magnum/Math/Test/Vector2Test.cpp
  5. 2
      src/Magnum/Math/Test/Vector3Test.cpp
  6. 2
      src/Magnum/Math/Test/Vector4Test.cpp

2
src/Magnum/Math/Test/Matrix3Test.cpp

@ -64,7 +64,6 @@ struct Matrix3Test: Corrade::TestSuite::Tester {
void constructZero();
void constructConversion();
void constructCopy();
void convert();
void isRigidTransformation();
@ -103,7 +102,6 @@ Matrix3Test::Matrix3Test() {
&Matrix3Test::constructZero,
&Matrix3Test::constructConversion,
&Matrix3Test::constructCopy,
&Matrix3Test::convert,
&Matrix3Test::isRigidTransformation,

2
src/Magnum/Math/Test/Matrix4Test.cpp

@ -66,7 +66,6 @@ struct Matrix4Test: Corrade::TestSuite::Tester {
void constructZero();
void constructConversion();
void constructCopy();
void convert();
void isRigidTransformation();
@ -114,7 +113,6 @@ Matrix4Test::Matrix4Test() {
&Matrix4Test::constructZero,
&Matrix4Test::constructConversion,
&Matrix4Test::constructCopy,
&Matrix4Test::convert,
&Matrix4Test::isRigidTransformation,

2
src/Magnum/Math/Test/MatrixTest.cpp

@ -64,7 +64,6 @@ struct MatrixTest: Corrade::TestSuite::Tester {
void constructZero();
void constructConversion();
void constructCopy();
void convert();
void isOrthogonal();
@ -96,7 +95,6 @@ MatrixTest::MatrixTest() {
&MatrixTest::constructZero,
&MatrixTest::constructConversion,
&MatrixTest::constructCopy,
&MatrixTest::convert,
&MatrixTest::isOrthogonal,

2
src/Magnum/Math/Test/Vector2Test.cpp

@ -59,7 +59,6 @@ struct Vector2Test: Corrade::TestSuite::Tester {
void constructOneValue();
void constructConversion();
void constructCopy();
void convert();
void access();
@ -85,7 +84,6 @@ Vector2Test::Vector2Test() {
&Vector2Test::constructOneValue,
&Vector2Test::constructConversion,
&Vector2Test::constructCopy,
&Vector2Test::convert,
&Vector2Test::access,

2
src/Magnum/Math/Test/Vector3Test.cpp

@ -60,7 +60,6 @@ struct Vector3Test: Corrade::TestSuite::Tester {
void constructParts();
void constructConversion();
void constructCopy();
void convert();
void access();
@ -85,7 +84,6 @@ Vector3Test::Vector3Test() {
&Vector3Test::constructParts,
&Vector3Test::constructConversion,
&Vector3Test::constructCopy,
&Vector3Test::convert,
&Vector3Test::access,

2
src/Magnum/Math/Test/Vector4Test.cpp

@ -61,7 +61,6 @@ struct Vector4Test: Corrade::TestSuite::Tester {
void constructParts();
void constructConversion();
void constructCopy();
void convert();
void access();
@ -86,7 +85,6 @@ Vector4Test::Vector4Test() {
&Vector4Test::constructParts,
&Vector4Test::constructConversion,
&Vector4Test::constructCopy,
&Vector4Test::convert,
&Vector4Test::access,

Loading…
Cancel
Save