| 5 | #include <string> |
| 6 | |
| 7 | TEST(MatrixTest, DefaultShape) { |
| 8 | Matrix<int> matrix; |
| 9 | |
| 10 | int shape0, shape1; |
| 11 | std::tie(shape0, shape1) = matrix.shape(); |
| 12 | EXPECT_EQ(shape0, 0); |
| 13 | EXPECT_EQ(shape1, 0); |
| 14 | } |
| 15 | |
| 16 | TEST(MatrixTest, CreateGivenSize) { |
| 17 | Matrix<int> matrix(3, 5); |
nothing calls this directly
no test coverage detected