mirror of
https://github.com/ThrowTheSwitch/CMock.git
synced 2026-06-05 21:15:20 +00: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);
|
|
}
|