예제 #1
0
TEST(Matrix3x3, Rows)
{
    const Matrix3x3<int> matrix(1, 2, 3, 4, 5, 6, 7, 8, 9);

    EXPECT_EQ(matrix.rows(), 3);
}