#include #include "math/matrix.hpp" TEST(matrix, check) { hack::matrix m { { 0, 0, 1 }, { 0, 1, 1 } }; m[1][1] = 123; ASSERT_EQ(m.size(), 3); }