eive-obsw/unittest/controller/testThermalController.cpp

13 lines
311 B
C++

#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);
}