ADD: added guid usage to identify a pod

This commit is contained in:
hwinkel
2023-08-07 21:30:53 +02:00
parent bc6617e100
commit 1c4c883648
11 changed files with 126 additions and 17 deletions

View File

@@ -0,0 +1,31 @@
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <kubecontrol/PodController.hpp>
SCENARIO("Testing the SimCore Sensor")
{
kubecontrol::PodController podc("../docs/config");
GIVEN("different Attributes for a Track in different forms")
{
LOG_S(INFO)<< podc.getServerAddress();
WHEN("constructing Track Object with data")
{
THEN("check if Track attributes are correct")
{
REQUIRE(true == true);
} //THEN
} // WHEN
} // GIVEN
} //SCENARIO