NOLINTBEGIN(cppcoreguidelines-*,readability-magic-numbers) clang-format off
| 6 | // NOLINTBEGIN(cppcoreguidelines-*,readability-magic-numbers) |
| 7 | // clang-format off |
| 8 | TEST(Matrix, TestShearing) |
| 9 | { |
| 10 | Base::Matrix4D mat; |
| 11 | mat.setRow(1, Base::Vector3d(0, 1, 1)); |
| 12 | EXPECT_EQ(mat.hasScale(), Base::ScaleType::Other); |
| 13 | } |
| 14 | |
| 15 | TEST(Matrix, TestMultLeftRight) |
| 16 | { |
nothing calls this directly
no test coverage detected