initial commit

This commit is contained in:
Henry
2025-03-07 07:23:39 +00:00
parent 3dcae58adf
commit a46c98b89a
31 changed files with 2038 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
#include <thread>
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <DatabaseHelper.hpp>
#include <loguru.hpp>
SCENARIO("Testing the SimCore Sensor")
{
std::string url = "localhost";
DatabaseHelper database(url,"test","123456","test");
database.connect();
database.getAvailableTables();
GIVEN("different Attributes for a Track in different forms")
{
// LOG_S(INFO)<<database.connect();
WHEN("constructing Track Object with data")
{
THEN("check if Track attributes are correct")
{
// REQUIRE("hello world" == "hello world");
} //THEN
} // WHEN
} // GIVEN
} //SCENARIO