mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-10 02:08:20 +00:00
1464762bcd
Implement GTest as a testing infrastructure. Make windows output binaries to the build folder instead of the release type folder (potentially issue further down the line) Add a simple unit test for DestroyableComponent
15 lines
339 B
C++
15 lines
339 B
C++
#include <gtest/gtest.h>
|
|
|
|
#include "NiPoint3.h"
|
|
|
|
/**
|
|
* @brief Basic test for NiPoint3 functionality
|
|
*
|
|
*/
|
|
TEST(dCommonTests, NiPoint3Test) {
|
|
// 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);
|
|
}
|