From 698aed88604203b1dc554d191509655c5d74ae2c Mon Sep 17 00:00:00 2001 From: Pcornat Date: Wed, 18 Mar 2026 14:14:10 +0100 Subject: [PATCH] Difference in letter for different stages --- Unit testing/billy_objects_tests.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Unit testing/billy_objects_tests.cpp b/Unit testing/billy_objects_tests.cpp index d762848..caad15d 100644 --- a/Unit testing/billy_objects_tests.cpp +++ b/Unit testing/billy_objects_tests.cpp @@ -112,7 +112,7 @@ TEST_CASE("[D] Deserialize full BillyObjects", "[deserialize][1]") { REQUIRE(std::get(dummy_object.objects.at(equipments::MedicKit)->get_type()) == equipments::MedicKit); } -TEST_CASE("[D] Pushing popping BillyObjects", "[pushpop][0]") { +TEST_CASE("[E] Pushing popping BillyObjects", "[pushpop][0]") { constexpr std::array all_objects{ weapons::Sword, weapons::Lance, @@ -153,7 +153,7 @@ TEST_CASE("[D] Pushing popping BillyObjects", "[pushpop][0]") { } } -TEST_CASE("[D] Double erase no throw", "[pushpop][1]") { +TEST_CASE("[E] Double erase no throw", "[pushpop][1]") { BillyObjects gestionnaire{}; CharacterSheet sheet; REQUIRE(sheet.get_objects().empty()); @@ -165,7 +165,7 @@ TEST_CASE("[D] Double erase no throw", "[pushpop][1]") { REQUIRE_FALSE(gestionnaire.erase_object(sheet, weapons::Bow)); } -TEST_CASE("[D] Insert no more than 3", "[pushpop][2]") { +TEST_CASE("[E] Insert no more than 3", "[pushpop][2]") { BillyObjects gestionnaire{}; CharacterSheet sheet; REQUIRE(sheet.get_objects().empty()); @@ -178,7 +178,7 @@ TEST_CASE("[D] Insert no more than 3", "[pushpop][2]") { REQUIRE(sheet.get_objects().size() == 3); } -TEST_CASE("[D] Printing Billy's objects", "[printing]") { +TEST_CASE("[F] Printing Billy's objects", "[printing]") { for (const auto &object: BillyObjects::all_objects) { const std::unique_ptr obj = test::get_obj(object); REQUIRE_NOTHROW(BillyObjects::billy_object_to_string(obj));