summaryrefslogtreecommitdiff
path: root/FreeRTOS-Plus/Test/CMock/examples/temp_sensor/test/TestTimerHardware.c
diff options
context:
space:
mode:
Diffstat (limited to 'FreeRTOS-Plus/Test/CMock/examples/temp_sensor/test/TestTimerHardware.c')
-rw-r--r--FreeRTOS-Plus/Test/CMock/examples/temp_sensor/test/TestTimerHardware.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/FreeRTOS-Plus/Test/CMock/examples/temp_sensor/test/TestTimerHardware.c b/FreeRTOS-Plus/Test/CMock/examples/temp_sensor/test/TestTimerHardware.c
new file mode 100644
index 000000000..16339d0ca
--- /dev/null
+++ b/FreeRTOS-Plus/Test/CMock/examples/temp_sensor/test/TestTimerHardware.c
@@ -0,0 +1,26 @@
+#include "unity.h"
+#include "Types.h"
+#include "TimerHardware.h"
+#include "MockTimerConfigurator.h"
+
+void setUp(void)
+{
+}
+
+void tearDown(void)
+{
+}
+
+void testInitShouldDelegateAppropriatelyToConfigurator(void)
+{
+ Timer_EnablePeripheralClocks_Expect();
+ Timer_Reset_Expect();
+ Timer_ConfigureMode_Expect();
+ Timer_ConfigurePeriod_Expect();
+ Timer_EnableOutputPin_Expect();
+ Timer_Enable_Expect();
+ Timer_ConfigureInterruptHandler_Expect();
+ Timer_Start_Expect();
+
+ TimerHardware_Init();
+}