36 lines
590 B
C++
36 lines
590 B
C++
|
|
|
|
|
|
#define CATCH_CONFIG_MAIN
|
|
#include <catch2/catch.hpp>
|
|
|
|
#include <kubecontrol/kubecontrol.hpp>
|
|
|
|
|
|
SCENARIO("Testing the SimCore Sensor")
|
|
{
|
|
kubecontrol::kubecontrol kc("../docs/config");
|
|
|
|
GIVEN("different Attributes for a Track in different forms")
|
|
{
|
|
kc.createYAML();
|
|
kc.startPod();
|
|
// kc.getPods();
|
|
kc.deletePod("debug-debian");
|
|
kc.getPods();
|
|
|
|
WHEN("constructing Track Object with data")
|
|
{
|
|
|
|
THEN("check if Track attributes are correct")
|
|
{
|
|
REQUIRE(true == true);
|
|
|
|
|
|
|
|
|
|
|
|
} //THEN
|
|
} // WHEN
|
|
} // GIVEN
|
|
} //SCENARIO
|