| 25 | } |
| 26 | |
| 27 | TEST(Matrix4Test, CreateIdentityMatrix) |
| 28 | { |
| 29 | const Matrix4 identity = Matrix4::getIdentity(); |
| 30 | EXPECT_EQ(identity, Matrix4::byRows(1, 0, 0, 0, |
| 31 | 0, 1, 0, 0, |
| 32 | 0, 0, 1, 0, |
| 33 | 0, 0, 0, 1)); |
| 34 | } |
| 35 | |
| 36 | TEST(Matrix4Test, AssignMatrixComponents) |
| 37 | { |
nothing calls this directly
no test coverage detected