FIX: fixed bug with unpacking sim track and updated the tests for several changed parts
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user