mirror of
https://github.com/ThrowTheSwitch/CMock
synced 2025-03-13 16:51:12 -04:00
19 lines
272 B
C
19 lines
272 B
C
#include "unity.h"
|
|
#include "Types.h"
|
|
#include "TimerModel.h"
|
|
#include "MockTaskScheduler.h"
|
|
|
|
void setUp(void)
|
|
{
|
|
}
|
|
|
|
void tearDown(void)
|
|
{
|
|
}
|
|
|
|
void testUpdateTimeShouldDelegateToTaskScheduler(void)
|
|
{
|
|
TaskScheduler_Update_Expect(19387L);
|
|
TimerModel_UpdateTime(19387L);
|
|
}
|