23 auto test_matrix =
Matrix(3, 3, {1, 2, 3, 4, 5, 6, 7, 8, 9});
24 const auto test_matrix_transpose =
Matrix(3, 3, {1, 4, 7, 2, 5, 8, 3, 6, 9});
25 const auto test_vector = std::vector<float>{1, 2, 3};
26 const auto test_vector_product = std::vector<float>{14, 32, 50};
29 ASSERT_TRUE(test_matrix.T() == test_matrix_transpose)
32 ASSERT_TRUE(test_matrix * test_vector == test_vector_product)