From b28868ba343a9c18e95e94a016199f34c9a78012 Mon Sep 17 00:00:00 2001 From: Zero Fanker Date: Sat, 14 Dec 2024 15:04:20 -0500 Subject: [PATCH] printing all available waypoint value mapping in UT . --- UnitTest/Waypoint_Test.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UnitTest/Waypoint_Test.cpp b/UnitTest/Waypoint_Test.cpp index bf7778e..210727a 100644 --- a/UnitTest/Waypoint_Test.cpp +++ b/UnitTest/Waypoint_Test.cpp @@ -10,4 +10,8 @@ TEST(WaypointTest, SerdeTest) ASSERT_EQ(WaypointToString(0), "A"); ASSERT_EQ(StringToWaypoint("A"), 0); + for (auto idx = 0ull; idx < 702; ++idx) { + cout << "Waypoint " << idx << ": " << WaypointToString(idx) << endl; + } + } \ No newline at end of file