25 lines
650 B
C++
25 lines
650 B
C++
#include <gtest/gtest.h>
|
|
#include <J3ML/LinearAlgebra/Vector2.h>
|
|
|
|
|
|
TEST(Vector2Test, V2_Constructor_Default)
|
|
{
|
|
EXPECT_EQ(LinearAlgebra::Vector2(), LinearAlgebra::Vector2::Up);
|
|
}
|
|
|
|
/*
|
|
TEST(Vector2Test, V2_Addition) { }
|
|
TEST(Vector2Test, V2_Subtraction) { }
|
|
TEST(Vector2Test, V2_Multiplication) { }
|
|
TEST(Vector2Test, V2_Division) { }
|
|
TEST(Vector2Test, V2_Equality) { }
|
|
TEST(Vector2Test, V2_Array_Operator_Indexing) { }
|
|
TEST(Vector2Test, V2_Normalize) { }
|
|
TEST(Vector2Test, V2_Dot) { }
|
|
TEST(Vector2Test, V2_Min) { }
|
|
TEST(Vector2Test, V2_Max) { }
|
|
TEST(Vector2Test, V2_Distance) { }
|
|
TEST(Vector2Test, V2_Length) { }
|
|
TEST(Vector2Test, V2_Clamp) { }
|
|
|
|
*/ |