From 12f2bf34742bf982dcb48f2aae6107284af46220 Mon Sep 17 00:00:00 2001 From: NukeBird Date: Sat, 15 Feb 2025 20:15:09 +0300 Subject: [PATCH] Remove useless test (there are no limits for amount of entities) --- tests/zecsy.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/tests/zecsy.cpp b/tests/zecsy.cpp index 9caf72f..ca2b8e7 100644 --- a/tests/zecsy.cpp +++ b/tests/zecsy.cpp @@ -40,20 +40,6 @@ TEST_CASE("Entity #0 should be reserved and never used") REQUIRE_FALSE(entity().is_alive()); } -//TODO: doesn't make sense anymore? (I stopped limitting amount of entities) -TEST_CASE("World should throw on id overflow") -{ - /*world w;*/ - /**/ - /*for(int i = 0; i < MAX_ZECSY_ENTITIES; ++i)*/ - /*{*/ - /* w.make_entity();*/ - /*}*/ - /**/ - /*REQUIRE_THROWS(w.make_entity());*/ - REQUIRE(true); -} - struct ChoosenOne {