DarkflameServer/tests/dCommonTests/TestNiPoint3.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
516 B
C++
Raw Normal View History

#include <gtest/gtest.h>
2022-01-03 15:00:21 +00:00
#include "NiPoint3.h"
/**
* @brief Basic test for NiPoint3 functionality
*
*/
TEST(dCommonTests, NiPoint3Test) {
2022-01-03 15:00:21 +00:00
// Check that Unitize works
ASSERT_EQ(NiPoint3(3, 0, 0).Unitize(), NiPoint3::UNIT_X);
// Check what unitize does to a vector of length 0
ASSERT_EQ(NiPoint3::ZERO.Unitize(), NiPoint3::ZERO);
}
TEST(dCommonTests, NiPoint3OperatorTest) {
NiPoint3 a(1, 2, 3);
NiPoint3 b(4, 5, 6);
a += b;
EXPECT_FLOAT_EQ(a.x, 5);
EXPECT_FLOAT_EQ(a.y, 7);
EXPECT_FLOAT_EQ(a.z, 9);
}