31 lines
524 B
C++
31 lines
524 B
C++
|
|
|
|
|
|
#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
|