You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
320 B
20 lines
320 B
#include "unity.h"
|
|
#include "Types.h"
|
|
#include "Model.h"
|
|
#include "MockTaskScheduler.h"
|
|
#include "MockTemperatureFilter.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void testInitShouldCallSchedulerAndTemperatureFilterInit(void)
|
|
{
|
|
TaskScheduler_Init_Expect();
|
|
TemperatureFilter_Init_Expect();
|
|
Model_Init();
|
|
}
|
|
|