mirror of
https://github.com/orange-cpp/omath.git
synced 2026-02-13 07:03:25 +00:00
added some finals
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
using namespace omath;
|
||||
|
||||
class UnitTestColor : public ::testing::Test
|
||||
class UnitTestColor final : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
Color color1;
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
using namespace omath;
|
||||
|
||||
|
||||
class UnitTestMatrix : public ::testing::Test
|
||||
class UnitTestMatrix final : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
Matrix m1;
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
|
||||
using namespace omath;
|
||||
|
||||
class UnitTestVector2 : public ::testing::Test
|
||||
class UnitTestVector2 final : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
Vector2 v1;
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
|
||||
using namespace omath;
|
||||
|
||||
class UnitTestVector3 : public ::testing::Test
|
||||
class UnitTestVector3 final : public ::testing::Test
|
||||
{
|
||||
protected:
|
||||
Vector3 v1;
|
||||
|
||||
Reference in New Issue
Block a user