added some finals

This commit is contained in:
2024-09-03 21:51:40 +03:00
parent 51336b9669
commit 251998e7f7
4 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@
using namespace omath; using namespace omath;
class UnitTestColor : public ::testing::Test class UnitTestColor final : public ::testing::Test
{ {
protected: protected:
Color color1; Color color1;

View File

@@ -8,7 +8,7 @@
using namespace omath; using namespace omath;
class UnitTestMatrix : public ::testing::Test class UnitTestMatrix final : public ::testing::Test
{ {
protected: protected:
Matrix m1; Matrix m1;

View File

@@ -9,7 +9,7 @@
using namespace omath; using namespace omath;
class UnitTestVector2 : public ::testing::Test class UnitTestVector2 final : public ::testing::Test
{ {
protected: protected:
Vector2 v1; Vector2 v1;

View File

@@ -7,7 +7,7 @@
using namespace omath; using namespace omath;
class UnitTestVector3 : public ::testing::Test class UnitTestVector3 final : public ::testing::Test
{ {
protected: protected:
Vector3 v1; Vector3 v1;