FIX: fixed bug with unpacking sim track and updated the tests for several changed parts

This commit is contained in:
Henry Winkel
2023-09-28 10:13:26 +02:00
parent dae304baec
commit a27b73a841
9 changed files with 36 additions and 191 deletions

View File

@@ -12,9 +12,9 @@ SCENARIO("Testing the SimCorePositionClass")
{
SimCore::Identifier ID1(true);
SimCore::Identifier ID2();
SimCore::Identifier ID3();
SimCore::Identifier ID4();
SimCore::Identifier ID2;
SimCore::Identifier ID3;
SimCore::Identifier ID4;
WHEN("constructing Position Object with data")
@@ -25,7 +25,7 @@ SCENARIO("Testing the SimCorePositionClass")
THEN("positions attributes are correct")
{
REQUIRE(ID1.isValid() == 100);
REQUIRE(ID1.isValid() == true);
REQUIRE(ID1.isExternal() == true);
REQUIRE(ID1 != ID2);