From 3ac7eb86a8d23f67c54131242858214fae36fe68 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Fri, 29 Jan 2021 03:59:34 -0500 Subject: [PATCH] Keyframe: Remove Coordinate ctor unit test --- tests/KeyFrame_Tests.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/KeyFrame_Tests.cpp b/tests/KeyFrame_Tests.cpp index e3a1d06a5..f4718dccb 100644 --- a/tests/KeyFrame_Tests.cpp +++ b/tests/KeyFrame_Tests.cpp @@ -510,18 +510,4 @@ TEST(Point_Vector_Constructor) CHECK_CLOSE(30.0f, k1.GetValue(10), 0.0001); } -TEST(Coordinate_Vector_Constructor) -{ - std::vector coordinates{ - Coordinate(1, 100), Coordinate(10, 500), Coordinate(1000, 80000) - }; - Keyframe k1(coordinates); - - CHECK_EQUAL(1001, k1.GetLength()); - - auto p1 = k1.GetPoint(2); - CHECK_CLOSE(80000.0f, p1.co.Y, 0.00001); -} - - }; // SUITE