Remove useless test (there are no limits for amount of entities)

This commit is contained in:
NukeBird 2025-02-15 20:15:09 +03:00
parent 70e1d0bad4
commit 12f2bf3474

View file

@ -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
{