7 lines
152 B
C++
7 lines
152 B
C++
|
#include <catch2/catch_test_macros.hpp>
|
||
|
|
||
|
TEST_CASE( "Thermal Controller" , "[ThermalController]") {
|
||
|
bool test = true;
|
||
|
REQUIRE( test == true);
|
||
|
|
||
|
}
|