Files
omath/tests/modules/unit_test_module.cpp
T
2026-06-14 23:57:58 +03:00

12 lines
193 B
C++

#include <gtest/gtest.h>
import omath;
TEST(UnitTestModule, ImportOmath)
{
const omath::Vector2<float> vec{1.f, 2.f};
EXPECT_FLOAT_EQ(vec.x, 1.f);
EXPECT_FLOAT_EQ(vec.y, 2.f);
}