28 lines
578 B
C++
28 lines
578 B
C++
#include <gtest/gtest.h>
|
|
#include <J3ML/LinearAlgebra/Vector2.h>
|
|
|
|
|
|
TEST(Vector2Test, V2_Constructor_Default) { }
|
|
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) { } |