unittesting a skeleton controller, still withouth fsfw

This commit is contained in:
2022-02-10 18:29:28 +01:00
parent d9badee18f
commit f9721eb1ae
6 changed files with 18 additions and 58 deletions

View File

@ -1,7 +1,13 @@
#include <catch2/catch_test_macros.hpp>
#include <mission/controller/ThermalController.h>
TEST_CASE( "Thermal Controller" , "[ThermalController]") {
bool test = true;
REQUIRE( test == true);
ThermalController controller(123);
REQUIRE(controller.perform() == HasReturnvaluesIF::RETURN_OK);
}