43 lines
783 B
C++
43 lines
783 B
C++
|
|
#include "Entities/Tracklist/Tracklist.hpp"
|
|
#include "Entities/Tracklist/TracklistItem.hpp"
|
|
#include "SimCore/IdentifierMaker.hpp"
|
|
#include "SimCore/Messages/SimTrack.hpp"
|
|
#include "SimCore/Position.hpp"
|
|
#include "WHISPER/Messages/Message.hpp"
|
|
#include <SimCore/Identifier.hpp>
|
|
#include <SimCore/SimCore.hpp>
|
|
#include <memory>
|
|
#include <thread>
|
|
#define CATCH_CONFIG_MAIN
|
|
#include <catch2/catch.hpp>
|
|
#include <loguru.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SCENARIO("Testing the SimCore Sensor")
|
|
{
|
|
GIVEN("different Attributes for a Track in different forms")
|
|
{
|
|
|
|
|
|
|
|
|
|
|
|
|
|
WHEN("constructing Track Object with data")
|
|
{
|
|
|
|
THEN("check if Track attributes are correct")
|
|
{
|
|
|
|
// REQUIRE(InternalTracklist.size() == 1);
|
|
|
|
|
|
} //THEN
|
|
} // WHEN
|
|
} // GIVEN
|
|
} //SCENARIO
|