Files
omath/tests/UnitTestMatrix.cpp
2024-08-18 08:52:16 +03:00

17 lines
261 B
C++

//
// Created by vlad on 5/18/2024.
//
#include <gtest/gtest.h>
#include <omath/matrix.h>
#include <print>
TEST(UnitTestMatrix, ToString)
{
omath::Matrix matrix(2, 2);
matrix.set(1.1);
const auto str = matrix.to_string();
std::cout << str;
}