#include #include #include // These subroutines are stubs needed to compile and link the test. void IoHwAb_DebugPortHigh(void) { } void IoHwAb_DebugPortLow (void) { } void HalCpuNop(void) { } STATIC_AL boolean appl_benchmark_main_result_is_ok; extern void TaskApplBenchmark_Main_Init(void); extern void TaskApplBenchmark_Main_Func(void); void Mt_Test_01_Dummy(void) { TaskApplBenchmark_Main_Init(); TaskApplBenchmark_Main_Func(); AL_UNITTEST_CHECK(appl_benchmark_main_result_is_ok, true, == ); } void ALUnitTest_AddTests(void) { ALUnitTest_AddFunction("Mt_Test_01_Dummy" , Mt_Test_01_Dummy); }