From 2baa044695bd11e9a8701c2f19dc22ca6a6ba2cb Mon Sep 17 00:00:00 2001 From: "Zed A. Shaw" Date: Mon, 17 Mar 2025 23:36:14 -0400 Subject: [PATCH] Final little fixes for testing. --- tests/easings.cpp | 4 ++++ tests/map.cpp | 1 + 2 files changed, 5 insertions(+) diff --git a/tests/easings.cpp b/tests/easings.cpp index 005bb62..5ae7fe7 100644 --- a/tests/easings.cpp +++ b/tests/easings.cpp @@ -12,6 +12,10 @@ TEST_CASE("make sure the easing functions at least run", "[easings]") { out = ease::out_bounce(1.13); REQUIRE(out <= 10 ); + out = ease::out_bounce(out); + out = ease::out_bounce(out); + out = ease::out_bounce(out); + out = ease::in_out_back(3.4); REQUIRE(out < 250.0); } diff --git a/tests/map.cpp b/tests/map.cpp index 632bb44..8c38eed 100644 --- a/tests/map.cpp +++ b/tests/map.cpp @@ -21,6 +21,7 @@ TEST_CASE("camera control", "[map]") { Point center = map.center_camera({10,10}, 5, 5); + map.dump(center.x, center.y); REQUIRE(center.x == 8); REQUIRE(center.y == 8);