Browse Source

Trade: match test case declaration order with definitons.

pull/623/head
Vladimír Vondruš 3 years ago
parent
commit
85906f55b2
  1. 4
      src/Magnum/Trade/Test/MeshDataTest.cpp

4
src/Magnum/Trade/Test/MeshDataTest.cpp

@ -81,8 +81,8 @@ struct MeshDataTest: TestSuite::Tester {
void constructAttributeWrongSize(); void constructAttributeWrongSize();
#endif #endif
void constructAttributeWrongStride(); void constructAttributeWrongStride();
void constructAttributeWrongDataAccess();
void constructAttributeOnlyArrayAllowed(); void constructAttributeOnlyArrayAllowed();
void constructAttributeWrongDataAccess();
void constructArrayAttribute(); void constructArrayAttribute();
void constructArrayAttributeNonContiguous(); void constructArrayAttributeNonContiguous();
@ -271,8 +271,8 @@ MeshDataTest::MeshDataTest() {
&MeshDataTest::constructAttributeWrongSize, &MeshDataTest::constructAttributeWrongSize,
#endif #endif
&MeshDataTest::constructAttributeWrongStride, &MeshDataTest::constructAttributeWrongStride,
&MeshDataTest::constructAttributeWrongDataAccess,
&MeshDataTest::constructAttributeOnlyArrayAllowed, &MeshDataTest::constructAttributeOnlyArrayAllowed,
&MeshDataTest::constructAttributeWrongDataAccess,
&MeshDataTest::constructArrayAttribute, &MeshDataTest::constructArrayAttribute,
&MeshDataTest::constructArrayAttributeNonContiguous, &MeshDataTest::constructArrayAttributeNonContiguous,

Loading…
Cancel
Save