hack/tests/math.cpp
2023-05-23 11:24:33 +03:00

12 lines
177 B
C++
Executable File

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