eive-obsw/unittest/controller/testThermalController.cpp

13 lines
311 B
C++
Raw Normal View History

2022-02-10 18:15:33 +01:00
#include <catch2/catch_test_macros.hpp>
#include <mission/controller/ThermalController.h>
2022-02-10 18:15:33 +01:00
TEST_CASE( "Thermal Controller" , "[ThermalController]") {
bool test = true;
REQUIRE( test == true);
ThermalController controller(123);
REQUIRE(controller.perform() == HasReturnvaluesIF::RETURN_OK);
2022-02-10 18:15:33 +01:00
}