mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
15 lines
255 B
C++
15 lines
255 B
C++
//
|
|
// Created by vlad on 5/18/2024.
|
|
//
|
|
#include <gtest/gtest.h>
|
|
#include <uml/matrix.h>
|
|
#include <print>
|
|
TEST(UnitTestMatrix, ToString)
|
|
{
|
|
uml::matrix matrix(2, 2);
|
|
matrix.set(1.1);
|
|
const auto str = matrix.to_string();
|
|
|
|
std::cout << str;
|
|
|
|
} |