ceedling 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1096) hide show
  1. checksums.yaml +4 -4
  2. data/GIT_COMMIT_SHA +1 -0
  3. data/README.md +2 -2
  4. data/assets/{project_as_gem.yml → project.yml} +0 -9
  5. data/bin/cli_helper.rb +12 -7
  6. data/bin/projectinator.rb +2 -2
  7. data/docs/BreakingChanges.md +11 -1
  8. data/docs/CONTRIBUTING.md +2 -12
  9. data/docs/CeedlingPacket.md +1 -4
  10. data/docs/CeedlingPullRequestChecklist.md +24 -0
  11. data/docs/Changelog.md +20 -1
  12. data/docs/ReleaseNotes.md +9 -1
  13. data/docs/SECURITY.md +41 -0
  14. data/examples/temp_sensor/project.yml +0 -9
  15. data/lib/ceedling/configurator.rb +4 -4
  16. data/lib/ceedling/constants.rb +9 -10
  17. data/lib/ceedling/defaults.rb +1 -27
  18. data/lib/ceedling/defineinator.rb +3 -1
  19. data/lib/ceedling/encodinator.rb +26 -0
  20. data/lib/ceedling/file_finder_helper.rb +17 -3
  21. data/lib/ceedling/file_path_collection_utils.rb +2 -2
  22. data/lib/ceedling/file_path_utils.rb +1 -1
  23. data/lib/ceedling/generator_helper.rb +2 -2
  24. data/lib/ceedling/generator_test_results.rb +2 -2
  25. data/lib/ceedling/include_pathinator.rb +2 -2
  26. data/lib/ceedling/objects.yml +6 -0
  27. data/lib/ceedling/parsing_parcels.rb +77 -0
  28. data/lib/ceedling/preprocessinator_extractor.rb +48 -32
  29. data/lib/ceedling/preprocessinator_file_handler.rb +6 -6
  30. data/lib/ceedling/preprocessinator_includes_handler.rb +1 -1
  31. data/lib/ceedling/test_context_extractor.rb +10 -71
  32. data/lib/ceedling/test_invoker.rb +4 -3
  33. data/lib/ceedling/test_invoker_helper.rb +3 -3
  34. data/lib/ceedling/tool_executor.rb +3 -3
  35. data/lib/ceedling/tool_validator.rb +2 -2
  36. data/lib/version.rb +1 -1
  37. data/plugins/dependencies/example/boss/project.yml +0 -3
  38. data/plugins/dependencies/example/supervisor/project.yml +0 -3
  39. data/plugins/fff/README.md +1 -1
  40. data/plugins/fff/lib/fff_mock_generator.rb +2 -0
  41. data/plugins/module_generator/README.md +59 -4
  42. data/plugins/module_generator/Rakefile +50 -23
  43. data/plugins/module_generator/config/module_generator.yml +0 -1
  44. data/plugins/module_generator/example/project.yml +1 -2
  45. data/plugins/module_generator/lib/module_generator.rb +5 -5
  46. data/spec/gcov/gcov_test_cases_spec.rb +1 -1
  47. data/spec/parsing_parcels_spec.rb +66 -0
  48. data/spec/preprocessinator_extractor_spec.rb +117 -39
  49. data/spec/test_context_extractor_spec.rb +3 -33
  50. metadata +11 -1050
  51. data/assets/project_with_guts.yml +0 -412
  52. data/build/test/dependencies/AdcConductor.d +0 -2
  53. data/build/test/dependencies/AdcHardware.d +0 -3
  54. data/build/test/dependencies/AdcModel.d +0 -3
  55. data/build/test/dependencies/Executor.d +0 -3
  56. data/build/test/dependencies/Main.d +0 -10
  57. data/build/test/dependencies/MockAdcConductor.d +0 -9
  58. data/build/test/dependencies/MockAdcHardware.d +0 -9
  59. data/build/test/dependencies/MockAdcHardwareConfigurator.d +0 -10
  60. data/build/test/dependencies/MockAdcModel.d +0 -9
  61. data/build/test/dependencies/MockAdcTemperatureSensor.d +0 -10
  62. data/build/test/dependencies/MockExecutor.d +0 -9
  63. data/build/test/dependencies/MockIntrinsicsWrapper.d +0 -9
  64. data/build/test/dependencies/MockModel.d +0 -9
  65. data/build/test/dependencies/MockTaskScheduler.d +0 -9
  66. data/build/test/dependencies/MockTemperatureCalculator.d +0 -10
  67. data/build/test/dependencies/MockTemperatureFilter.d +0 -10
  68. data/build/test/dependencies/MockTimerConductor.d +0 -9
  69. data/build/test/dependencies/MockTimerConfigurator.d +0 -10
  70. data/build/test/dependencies/MockTimerHardware.d +0 -9
  71. data/build/test/dependencies/MockTimerInterruptHandler.d +0 -10
  72. data/build/test/dependencies/MockTimerModel.d +0 -9
  73. data/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d +0 -10
  74. data/build/test/dependencies/MockUsartConductor.d +0 -9
  75. data/build/test/dependencies/MockUsartConfigurator.d +0 -10
  76. data/build/test/dependencies/MockUsartHardware.d +0 -9
  77. data/build/test/dependencies/MockUsartModel.d +0 -9
  78. data/build/test/dependencies/MockUsartPutChar.d +0 -9
  79. data/build/test/dependencies/Model.d +0 -2
  80. data/build/test/dependencies/TaskScheduler.d +0 -2
  81. data/build/test/dependencies/TemperatureCalculator.d +0 -2
  82. data/build/test/dependencies/TemperatureFilter.d +0 -2
  83. data/build/test/dependencies/TestAdcConductor.d +0 -7
  84. data/build/test/dependencies/TestAdcConductor_runner.d +0 -10
  85. data/build/test/dependencies/TestAdcHardware.d +0 -8
  86. data/build/test/dependencies/TestAdcHardware_runner.d +0 -11
  87. data/build/test/dependencies/TestAdcModel.d +0 -10
  88. data/build/test/dependencies/TestAdcModel_runner.d +0 -13
  89. data/build/test/dependencies/TestExecutor.d +0 -14
  90. data/build/test/dependencies/TestExecutor_runner.d +0 -17
  91. data/build/test/dependencies/TestMain.d +0 -5
  92. data/build/test/dependencies/TestMain_runner.d +0 -8
  93. data/build/test/dependencies/TestModel.d +0 -7
  94. data/build/test/dependencies/TestModel_runner.d +0 -10
  95. data/build/test/dependencies/TestTaskScheduler.d +0 -4
  96. data/build/test/dependencies/TestTaskScheduler_runner.d +0 -5
  97. data/build/test/dependencies/TestTemperatureCalculator.d +0 -3
  98. data/build/test/dependencies/TestTemperatureCalculator_runner.d +0 -4
  99. data/build/test/dependencies/TestTemperatureFilter.d +0 -4
  100. data/build/test/dependencies/TestTemperatureFilter_runner.d +0 -5
  101. data/build/test/dependencies/TestTimerConductor.d +0 -10
  102. data/build/test/dependencies/TestTimerConductor_runner.d +0 -13
  103. data/build/test/dependencies/TestTimerHardware.d +0 -6
  104. data/build/test/dependencies/TestTimerHardware_runner.d +0 -9
  105. data/build/test/dependencies/TestTimerIntegrated.d +0 -10
  106. data/build/test/dependencies/TestTimerIntegrated_runner.d +0 -13
  107. data/build/test/dependencies/TestTimerModel.d +0 -6
  108. data/build/test/dependencies/TestTimerModel_runner.d +0 -9
  109. data/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d +0 -5
  110. data/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d +0 -5
  111. data/build/test/dependencies/TestUsartConductor.d +0 -10
  112. data/build/test/dependencies/TestUsartConductor_runner.d +0 -13
  113. data/build/test/dependencies/TestUsartHardware.d +0 -8
  114. data/build/test/dependencies/TestUsartHardware_runner.d +0 -11
  115. data/build/test/dependencies/TestUsartIntegrated.d +0 -15
  116. data/build/test/dependencies/TestUsartIntegrated_runner.d +0 -18
  117. data/build/test/dependencies/TestUsartModel.d +0 -8
  118. data/build/test/dependencies/TestUsartModel_runner.d +0 -11
  119. data/build/test/dependencies/TimerConductor.d +0 -3
  120. data/build/test/dependencies/TimerHardware.d +0 -3
  121. data/build/test/dependencies/TimerModel.d +0 -2
  122. data/build/test/dependencies/UnityHelper.d +0 -5
  123. data/build/test/dependencies/UsartBaudRateRegisterCalculator.d +0 -3
  124. data/build/test/dependencies/UsartConductor.d +0 -3
  125. data/build/test/dependencies/UsartHardware.d +0 -3
  126. data/build/test/dependencies/UsartModel.d +0 -3
  127. data/build/test/dependencies/cmock.d +0 -6
  128. data/build/test/dependencies/unity.d +0 -4
  129. data/build/test/mocks/TestAdcConductor/MockAdcHardware.c +0 -445
  130. data/build/test/mocks/TestAdcConductor/MockAdcHardware.h +0 -91
  131. data/build/test/mocks/TestAdcConductor/MockAdcModel.c +0 -618
  132. data/build/test/mocks/TestAdcConductor/MockAdcModel.h +0 -103
  133. data/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.c +0 -317
  134. data/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.h +0 -79
  135. data/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.c +0 -351
  136. data/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.h +0 -79
  137. data/build/test/mocks/TestAdcModel/MockTaskScheduler.c +0 -458
  138. data/build/test/mocks/TestAdcModel/MockTaskScheduler.h +0 -91
  139. data/build/test/mocks/TestAdcModel/MockTemperatureCalculator.c +0 -159
  140. data/build/test/mocks/TestAdcModel/MockTemperatureCalculator.h +0 -55
  141. data/build/test/mocks/TestAdcModel/MockTemperatureFilter.c +0 -347
  142. data/build/test/mocks/TestAdcModel/MockTemperatureFilter.h +0 -79
  143. data/build/test/mocks/TestExecutor/MockAdcConductor.c +0 -556
  144. data/build/test/mocks/TestExecutor/MockAdcConductor.h +0 -103
  145. data/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.c +0 -223
  146. data/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.h +0 -67
  147. data/build/test/mocks/TestExecutor/MockModel.c +0 -129
  148. data/build/test/mocks/TestExecutor/MockModel.h +0 -55
  149. data/build/test/mocks/TestExecutor/MockTimerConductor.c +0 -223
  150. data/build/test/mocks/TestExecutor/MockTimerConductor.h +0 -67
  151. data/build/test/mocks/TestExecutor/MockUsartConductor.c +0 -223
  152. data/build/test/mocks/TestExecutor/MockUsartConductor.h +0 -67
  153. data/build/test/mocks/TestMain/MockExecutor.c +0 -240
  154. data/build/test/mocks/TestMain/MockExecutor.h +0 -67
  155. data/build/test/mocks/TestModel/MockTaskScheduler.c +0 -458
  156. data/build/test/mocks/TestModel/MockTaskScheduler.h +0 -91
  157. data/build/test/mocks/TestModel/MockTemperatureFilter.c +0 -347
  158. data/build/test/mocks/TestModel/MockTemperatureFilter.h +0 -79
  159. data/build/test/mocks/TestTimerConductor/MockTimerHardware.c +0 -129
  160. data/build/test/mocks/TestTimerConductor/MockTimerHardware.h +0 -55
  161. data/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.c +0 -347
  162. data/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.h +0 -79
  163. data/build/test/mocks/TestTimerConductor/MockTimerModel.c +0 -142
  164. data/build/test/mocks/TestTimerConductor/MockTimerModel.h +0 -55
  165. data/build/test/mocks/TestTimerHardware/MockTimerConfigurator.c +0 -787
  166. data/build/test/mocks/TestTimerHardware/MockTimerConfigurator.h +0 -139
  167. data/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.c +0 -458
  168. data/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.h +0 -91
  169. data/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.c +0 -787
  170. data/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.h +0 -139
  171. data/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.c +0 -347
  172. data/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.h +0 -79
  173. data/build/test/mocks/TestTimerModel/MockTaskScheduler.c +0 -458
  174. data/build/test/mocks/TestTimerModel/MockTaskScheduler.h +0 -91
  175. data/build/test/mocks/TestUsartConductor/MockTaskScheduler.c +0 -458
  176. data/build/test/mocks/TestUsartConductor/MockTaskScheduler.h +0 -91
  177. data/build/test/mocks/TestUsartConductor/MockUsartHardware.c +0 -249
  178. data/build/test/mocks/TestUsartConductor/MockUsartHardware.h +0 -67
  179. data/build/test/mocks/TestUsartConductor/MockUsartModel.c +0 -368
  180. data/build/test/mocks/TestUsartConductor/MockUsartModel.h +0 -79
  181. data/build/test/mocks/TestUsartHardware/MockUsartConfigurator.c +0 -612
  182. data/build/test/mocks/TestUsartHardware/MockUsartConfigurator.h +0 -115
  183. data/build/test/mocks/TestUsartHardware/MockUsartPutChar.c +0 -142
  184. data/build/test/mocks/TestUsartHardware/MockUsartPutChar.h +0 -55
  185. data/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.c +0 -458
  186. data/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.h +0 -91
  187. data/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.c +0 -347
  188. data/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.h +0 -79
  189. data/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.c +0 -166
  190. data/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.h +0 -55
  191. data/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.c +0 -612
  192. data/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.h +0 -115
  193. data/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.c +0 -142
  194. data/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.h +0 -55
  195. data/build/test/mocks/TestUsartModel/MockTemperatureFilter.c +0 -347
  196. data/build/test/mocks/TestUsartModel/MockTemperatureFilter.h +0 -79
  197. data/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.c +0 -166
  198. data/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.h +0 -55
  199. data/build/test/out/TestAdcConductor/AdcConductor.o +0 -0
  200. data/build/test/out/TestAdcConductor/MockAdcHardware.o +0 -0
  201. data/build/test/out/TestAdcConductor/MockAdcModel.o +0 -0
  202. data/build/test/out/TestAdcConductor/TestAdcConductor.o +0 -0
  203. data/build/test/out/TestAdcConductor/TestAdcConductor.out +0 -0
  204. data/build/test/out/TestAdcConductor/TestAdcConductor_runner.o +0 -0
  205. data/build/test/out/TestAdcConductor/UnityHelper.o +0 -0
  206. data/build/test/out/TestAdcConductor/cmock.o +0 -0
  207. data/build/test/out/TestAdcConductor/unity.o +0 -0
  208. data/build/test/out/TestAdcHardware/AdcHardware.o +0 -0
  209. data/build/test/out/TestAdcHardware/MockAdcHardwareConfigurator.o +0 -0
  210. data/build/test/out/TestAdcHardware/MockAdcTemperatureSensor.o +0 -0
  211. data/build/test/out/TestAdcHardware/TestAdcHardware.o +0 -0
  212. data/build/test/out/TestAdcHardware/TestAdcHardware.out +0 -0
  213. data/build/test/out/TestAdcHardware/TestAdcHardware_runner.o +0 -0
  214. data/build/test/out/TestAdcHardware/UnityHelper.o +0 -0
  215. data/build/test/out/TestAdcHardware/cmock.o +0 -0
  216. data/build/test/out/TestAdcHardware/unity.o +0 -0
  217. data/build/test/out/TestAdcModel/AdcModel.o +0 -0
  218. data/build/test/out/TestAdcModel/MockTaskScheduler.o +0 -0
  219. data/build/test/out/TestAdcModel/MockTemperatureCalculator.o +0 -0
  220. data/build/test/out/TestAdcModel/MockTemperatureFilter.o +0 -0
  221. data/build/test/out/TestAdcModel/TestAdcModel.o +0 -0
  222. data/build/test/out/TestAdcModel/TestAdcModel.out +0 -0
  223. data/build/test/out/TestAdcModel/TestAdcModel_runner.o +0 -0
  224. data/build/test/out/TestAdcModel/UnityHelper.o +0 -0
  225. data/build/test/out/TestAdcModel/cmock.o +0 -0
  226. data/build/test/out/TestAdcModel/unity.o +0 -0
  227. data/build/test/out/TestExecutor/Executor.o +0 -0
  228. data/build/test/out/TestExecutor/MockAdcConductor.o +0 -0
  229. data/build/test/out/TestExecutor/MockIntrinsicsWrapper.o +0 -0
  230. data/build/test/out/TestExecutor/MockModel.o +0 -0
  231. data/build/test/out/TestExecutor/MockTimerConductor.o +0 -0
  232. data/build/test/out/TestExecutor/MockUsartConductor.o +0 -0
  233. data/build/test/out/TestExecutor/TestExecutor.o +0 -0
  234. data/build/test/out/TestExecutor/TestExecutor.out +0 -0
  235. data/build/test/out/TestExecutor/TestExecutor_runner.o +0 -0
  236. data/build/test/out/TestExecutor/UnityHelper.o +0 -0
  237. data/build/test/out/TestExecutor/cmock.o +0 -0
  238. data/build/test/out/TestExecutor/unity.o +0 -0
  239. data/build/test/out/TestMain/Main.o +0 -0
  240. data/build/test/out/TestMain/MockExecutor.o +0 -0
  241. data/build/test/out/TestMain/TestMain.o +0 -0
  242. data/build/test/out/TestMain/TestMain.out +0 -0
  243. data/build/test/out/TestMain/TestMain_runner.o +0 -0
  244. data/build/test/out/TestMain/UnityHelper.o +0 -0
  245. data/build/test/out/TestMain/cmock.o +0 -0
  246. data/build/test/out/TestMain/unity.o +0 -0
  247. data/build/test/out/TestModel/MockTaskScheduler.o +0 -0
  248. data/build/test/out/TestModel/MockTemperatureFilter.o +0 -0
  249. data/build/test/out/TestModel/Model.o +0 -0
  250. data/build/test/out/TestModel/TestModel.o +0 -0
  251. data/build/test/out/TestModel/TestModel.out +0 -0
  252. data/build/test/out/TestModel/TestModel_runner.o +0 -0
  253. data/build/test/out/TestModel/UnityHelper.o +0 -0
  254. data/build/test/out/TestModel/cmock.o +0 -0
  255. data/build/test/out/TestModel/unity.o +0 -0
  256. data/build/test/out/TestTaskScheduler/TaskScheduler.o +0 -0
  257. data/build/test/out/TestTaskScheduler/TestTaskScheduler.o +0 -0
  258. data/build/test/out/TestTaskScheduler/TestTaskScheduler.out +0 -0
  259. data/build/test/out/TestTaskScheduler/TestTaskScheduler_runner.o +0 -0
  260. data/build/test/out/TestTaskScheduler/UnityHelper.o +0 -0
  261. data/build/test/out/TestTaskScheduler/unity.o +0 -0
  262. data/build/test/out/TestTemperatureCalculator/TemperatureCalculator.o +0 -0
  263. data/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.o +0 -0
  264. data/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.out +0 -0
  265. data/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator_runner.o +0 -0
  266. data/build/test/out/TestTemperatureCalculator/UnityHelper.o +0 -0
  267. data/build/test/out/TestTemperatureCalculator/unity.o +0 -0
  268. data/build/test/out/TestTemperatureFilter/TemperatureFilter.o +0 -0
  269. data/build/test/out/TestTemperatureFilter/TestTemperatureFilter.o +0 -0
  270. data/build/test/out/TestTemperatureFilter/TestTemperatureFilter.out +0 -0
  271. data/build/test/out/TestTemperatureFilter/TestTemperatureFilter_runner.o +0 -0
  272. data/build/test/out/TestTemperatureFilter/UnityHelper.o +0 -0
  273. data/build/test/out/TestTemperatureFilter/unity.o +0 -0
  274. data/build/test/out/TestTimerConductor/MockTimerHardware.o +0 -0
  275. data/build/test/out/TestTimerConductor/MockTimerInterruptHandler.o +0 -0
  276. data/build/test/out/TestTimerConductor/MockTimerModel.o +0 -0
  277. data/build/test/out/TestTimerConductor/TestTimerConductor.o +0 -0
  278. data/build/test/out/TestTimerConductor/TestTimerConductor.out +0 -0
  279. data/build/test/out/TestTimerConductor/TestTimerConductor_runner.o +0 -0
  280. data/build/test/out/TestTimerConductor/TimerConductor.o +0 -0
  281. data/build/test/out/TestTimerConductor/UnityHelper.o +0 -0
  282. data/build/test/out/TestTimerConductor/cmock.o +0 -0
  283. data/build/test/out/TestTimerConductor/unity.o +0 -0
  284. data/build/test/out/TestTimerHardware/MockTimerConfigurator.o +0 -0
  285. data/build/test/out/TestTimerHardware/TestTimerHardware.o +0 -0
  286. data/build/test/out/TestTimerHardware/TestTimerHardware.out +0 -0
  287. data/build/test/out/TestTimerHardware/TestTimerHardware_runner.o +0 -0
  288. data/build/test/out/TestTimerHardware/TimerHardware.o +0 -0
  289. data/build/test/out/TestTimerHardware/UnityHelper.o +0 -0
  290. data/build/test/out/TestTimerHardware/cmock.o +0 -0
  291. data/build/test/out/TestTimerHardware/unity.o +0 -0
  292. data/build/test/out/TestTimerIntegrated/MockTaskScheduler.o +0 -0
  293. data/build/test/out/TestTimerIntegrated/MockTimerConfigurator.o +0 -0
  294. data/build/test/out/TestTimerIntegrated/MockTimerInterruptHandler.o +0 -0
  295. data/build/test/out/TestTimerIntegrated/TestTimerIntegrated.o +0 -0
  296. data/build/test/out/TestTimerIntegrated/TestTimerIntegrated.out +0 -0
  297. data/build/test/out/TestTimerIntegrated/TestTimerIntegrated_runner.o +0 -0
  298. data/build/test/out/TestTimerIntegrated/TimerConductor.o +0 -0
  299. data/build/test/out/TestTimerIntegrated/TimerHardware.o +0 -0
  300. data/build/test/out/TestTimerIntegrated/TimerModel.o +0 -0
  301. data/build/test/out/TestTimerIntegrated/UnityHelper.o +0 -0
  302. data/build/test/out/TestTimerIntegrated/cmock.o +0 -0
  303. data/build/test/out/TestTimerIntegrated/unity.o +0 -0
  304. data/build/test/out/TestTimerModel/MockTaskScheduler.o +0 -0
  305. data/build/test/out/TestTimerModel/TestTimerModel.o +0 -0
  306. data/build/test/out/TestTimerModel/TestTimerModel.out +0 -0
  307. data/build/test/out/TestTimerModel/TestTimerModel_runner.o +0 -0
  308. data/build/test/out/TestTimerModel/TimerModel.o +0 -0
  309. data/build/test/out/TestTimerModel/UnityHelper.o +0 -0
  310. data/build/test/out/TestTimerModel/cmock.o +0 -0
  311. data/build/test/out/TestTimerModel/unity.o +0 -0
  312. data/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.o +0 -0
  313. data/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.out +0 -0
  314. data/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator_runner.o +0 -0
  315. data/build/test/out/TestUsartBaudRateRegisterCalculator/UnityHelper.o +0 -0
  316. data/build/test/out/TestUsartBaudRateRegisterCalculator/UsartBaudRateRegisterCalculator.o +0 -0
  317. data/build/test/out/TestUsartBaudRateRegisterCalculator/unity.o +0 -0
  318. data/build/test/out/TestUsartConductor/MockTaskScheduler.o +0 -0
  319. data/build/test/out/TestUsartConductor/MockUsartHardware.o +0 -0
  320. data/build/test/out/TestUsartConductor/MockUsartModel.o +0 -0
  321. data/build/test/out/TestUsartConductor/TestUsartConductor.o +0 -0
  322. data/build/test/out/TestUsartConductor/TestUsartConductor.out +0 -0
  323. data/build/test/out/TestUsartConductor/TestUsartConductor_runner.o +0 -0
  324. data/build/test/out/TestUsartConductor/UnityHelper.o +0 -0
  325. data/build/test/out/TestUsartConductor/UsartConductor.o +0 -0
  326. data/build/test/out/TestUsartConductor/cmock.o +0 -0
  327. data/build/test/out/TestUsartConductor/unity.o +0 -0
  328. data/build/test/out/TestUsartHardware/MockUsartConfigurator.o +0 -0
  329. data/build/test/out/TestUsartHardware/MockUsartPutChar.o +0 -0
  330. data/build/test/out/TestUsartHardware/TestUsartHardware.o +0 -0
  331. data/build/test/out/TestUsartHardware/TestUsartHardware.out +0 -0
  332. data/build/test/out/TestUsartHardware/TestUsartHardware_runner.o +0 -0
  333. data/build/test/out/TestUsartHardware/UnityHelper.o +0 -0
  334. data/build/test/out/TestUsartHardware/UsartHardware.o +0 -0
  335. data/build/test/out/TestUsartHardware/cmock.o +0 -0
  336. data/build/test/out/TestUsartHardware/unity.o +0 -0
  337. data/build/test/out/TestUsartIntegrated/MockTaskScheduler.o +0 -0
  338. data/build/test/out/TestUsartIntegrated/MockTemperatureFilter.o +0 -0
  339. data/build/test/out/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.o +0 -0
  340. data/build/test/out/TestUsartIntegrated/MockUsartConfigurator.o +0 -0
  341. data/build/test/out/TestUsartIntegrated/MockUsartPutChar.o +0 -0
  342. data/build/test/out/TestUsartIntegrated/TestUsartIntegrated.o +0 -0
  343. data/build/test/out/TestUsartIntegrated/TestUsartIntegrated.out +0 -0
  344. data/build/test/out/TestUsartIntegrated/TestUsartIntegrated_runner.o +0 -0
  345. data/build/test/out/TestUsartIntegrated/UnityHelper.o +0 -0
  346. data/build/test/out/TestUsartIntegrated/UsartConductor.o +0 -0
  347. data/build/test/out/TestUsartIntegrated/UsartHardware.o +0 -0
  348. data/build/test/out/TestUsartIntegrated/UsartModel.o +0 -0
  349. data/build/test/out/TestUsartIntegrated/cmock.o +0 -0
  350. data/build/test/out/TestUsartIntegrated/unity.o +0 -0
  351. data/build/test/out/TestUsartModel/MockTemperatureFilter.o +0 -0
  352. data/build/test/out/TestUsartModel/MockUsartBaudRateRegisterCalculator.o +0 -0
  353. data/build/test/out/TestUsartModel/TestUsartModel.o +0 -0
  354. data/build/test/out/TestUsartModel/TestUsartModel.out +0 -0
  355. data/build/test/out/TestUsartModel/TestUsartModel_runner.o +0 -0
  356. data/build/test/out/TestUsartModel/UnityHelper.o +0 -0
  357. data/build/test/out/TestUsartModel/UsartModel.o +0 -0
  358. data/build/test/out/TestUsartModel/cmock.o +0 -0
  359. data/build/test/out/TestUsartModel/unity.o +0 -0
  360. data/build/test/preprocess/files/TestAdcConductor/AdcHardware.h +0 -16
  361. data/build/test/preprocess/files/TestAdcConductor/AdcModel.h +0 -18
  362. data/build/test/preprocess/files/TestAdcConductor/TestAdcConductor.c +0 -106
  363. data/build/test/preprocess/files/TestAdcHardware/AdcHardwareConfigurator.h +0 -14
  364. data/build/test/preprocess/files/TestAdcHardware/AdcTemperatureSensor.h +0 -14
  365. data/build/test/preprocess/files/TestAdcHardware/TestAdcHardware.c +0 -59
  366. data/build/test/preprocess/files/TestAdcModel/TaskScheduler.h +0 -16
  367. data/build/test/preprocess/files/TestAdcModel/TemperatureCalculator.h +0 -10
  368. data/build/test/preprocess/files/TestAdcModel/TemperatureFilter.h +0 -14
  369. data/build/test/preprocess/files/TestAdcModel/TestAdcModel.c +0 -41
  370. data/build/test/preprocess/files/TestExecutor/AdcConductor.h +0 -18
  371. data/build/test/preprocess/files/TestExecutor/IntrinsicsWrapper.h +0 -10
  372. data/build/test/preprocess/files/TestExecutor/Model.h +0 -10
  373. data/build/test/preprocess/files/TestExecutor/TestExecutor.c +0 -45
  374. data/build/test/preprocess/files/TestExecutor/TimerConductor.h +0 -12
  375. data/build/test/preprocess/files/TestExecutor/UsartConductor.h +0 -10
  376. data/build/test/preprocess/files/TestMain/Executor.h +0 -12
  377. data/build/test/preprocess/files/TestMain/TestMain.c +0 -31
  378. data/build/test/preprocess/files/TestModel/TaskScheduler.h +0 -16
  379. data/build/test/preprocess/files/TestModel/TemperatureFilter.h +0 -14
  380. data/build/test/preprocess/files/TestModel/TestModel.c +0 -24
  381. data/build/test/preprocess/files/TestTaskScheduler/TestTaskScheduler.c +0 -168
  382. data/build/test/preprocess/files/TestTemperatureCalculator/TestTemperatureCalculator.c +0 -52
  383. data/build/test/preprocess/files/TestTemperatureFilter/TestTemperatureFilter.c +0 -163
  384. data/build/test/preprocess/files/TestTimerConductor/TestTimerConductor.c +0 -38
  385. data/build/test/preprocess/files/TestTimerConductor/TimerHardware.h +0 -10
  386. data/build/test/preprocess/files/TestTimerConductor/TimerInterruptHandler.h +0 -14
  387. data/build/test/preprocess/files/TestTimerConductor/TimerModel.h +0 -10
  388. data/build/test/preprocess/files/TestTimerHardware/TestTimerHardware.c +0 -35
  389. data/build/test/preprocess/files/TestTimerHardware/TimerConfigurator.h +0 -24
  390. data/build/test/preprocess/files/TestTimerIntegrated/TaskScheduler.h +0 -16
  391. data/build/test/preprocess/files/TestTimerIntegrated/TestTimerIntegrated.c +0 -54
  392. data/build/test/preprocess/files/TestTimerIntegrated/TimerConfigurator.h +0 -24
  393. data/build/test/preprocess/files/TestTimerIntegrated/TimerInterruptHandler.h +0 -14
  394. data/build/test/preprocess/files/TestTimerModel/TaskScheduler.h +0 -16
  395. data/build/test/preprocess/files/TestTimerModel/TestTimerModel.c +0 -21
  396. data/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c +0 -46
  397. data/build/test/preprocess/files/TestUsartConductor/TaskScheduler.h +0 -16
  398. data/build/test/preprocess/files/TestUsartConductor/TestUsartConductor.c +0 -47
  399. data/build/test/preprocess/files/TestUsartConductor/UsartHardware.h +0 -12
  400. data/build/test/preprocess/files/TestUsartConductor/UsartModel.h +0 -14
  401. data/build/test/preprocess/files/TestUsartHardware/TestUsartHardware.c +0 -47
  402. data/build/test/preprocess/files/TestUsartHardware/UsartConfigurator.h +0 -20
  403. data/build/test/preprocess/files/TestUsartHardware/UsartPutChar.h +0 -10
  404. data/build/test/preprocess/files/TestUsartIntegrated/TaskScheduler.h +0 -16
  405. data/build/test/preprocess/files/TestUsartIntegrated/TemperatureFilter.h +0 -14
  406. data/build/test/preprocess/files/TestUsartIntegrated/TestUsartIntegrated.c +0 -57
  407. data/build/test/preprocess/files/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h +0 -10
  408. data/build/test/preprocess/files/TestUsartIntegrated/UsartConfigurator.h +0 -20
  409. data/build/test/preprocess/files/TestUsartIntegrated/UsartPutChar.h +0 -10
  410. data/build/test/preprocess/files/TestUsartModel/TemperatureFilter.h +0 -14
  411. data/build/test/preprocess/files/TestUsartModel/TestUsartModel.c +0 -64
  412. data/build/test/preprocess/files/TestUsartModel/UsartBaudRateRegisterCalculator.h +0 -10
  413. data/build/test/preprocess/includes/TestAdcConductor/AdcHardware.h.yml +0 -2
  414. data/build/test/preprocess/includes/TestAdcConductor/AdcModel.h.yml +0 -2
  415. data/build/test/preprocess/includes/TestAdcConductor/TestAdcConductor.c.yml +0 -7
  416. data/build/test/preprocess/includes/TestAdcHardware/AdcHardwareConfigurator.h.yml +0 -2
  417. data/build/test/preprocess/includes/TestAdcHardware/AdcTemperatureSensor.h.yml +0 -2
  418. data/build/test/preprocess/includes/TestAdcHardware/TestAdcHardware.c.yml +0 -6
  419. data/build/test/preprocess/includes/TestAdcModel/TaskScheduler.h.yml +0 -2
  420. data/build/test/preprocess/includes/TestAdcModel/TemperatureCalculator.h.yml +0 -2
  421. data/build/test/preprocess/includes/TestAdcModel/TemperatureFilter.h.yml +0 -2
  422. data/build/test/preprocess/includes/TestAdcModel/TestAdcModel.c.yml +0 -7
  423. data/build/test/preprocess/includes/TestExecutor/AdcConductor.h.yml +0 -2
  424. data/build/test/preprocess/includes/TestExecutor/IntrinsicsWrapper.h.yml +0 -1
  425. data/build/test/preprocess/includes/TestExecutor/Model.h.yml +0 -2
  426. data/build/test/preprocess/includes/TestExecutor/TestExecutor.c.yml +0 -9
  427. data/build/test/preprocess/includes/TestExecutor/TimerConductor.h.yml +0 -2
  428. data/build/test/preprocess/includes/TestExecutor/UsartConductor.h.yml +0 -1
  429. data/build/test/preprocess/includes/TestMain/Executor.h.yml +0 -2
  430. data/build/test/preprocess/includes/TestMain/TestMain.c.yml +0 -5
  431. data/build/test/preprocess/includes/TestModel/TaskScheduler.h.yml +0 -2
  432. data/build/test/preprocess/includes/TestModel/TemperatureFilter.h.yml +0 -2
  433. data/build/test/preprocess/includes/TestModel/TestModel.c.yml +0 -6
  434. data/build/test/preprocess/includes/TestTaskScheduler/TestTaskScheduler.c.yml +0 -4
  435. data/build/test/preprocess/includes/TestTemperatureCalculator/TestTemperatureCalculator.c.yml +0 -3
  436. data/build/test/preprocess/includes/TestTemperatureFilter/TestTemperatureFilter.c.yml +0 -4
  437. data/build/test/preprocess/includes/TestTimerConductor/TestTimerConductor.c.yml +0 -7
  438. data/build/test/preprocess/includes/TestTimerConductor/TimerHardware.h.yml +0 -2
  439. data/build/test/preprocess/includes/TestTimerConductor/TimerInterruptHandler.h.yml +0 -2
  440. data/build/test/preprocess/includes/TestTimerConductor/TimerModel.h.yml +0 -2
  441. data/build/test/preprocess/includes/TestTimerHardware/TestTimerHardware.c.yml +0 -5
  442. data/build/test/preprocess/includes/TestTimerHardware/TimerConfigurator.h.yml +0 -2
  443. data/build/test/preprocess/includes/TestTimerIntegrated/TaskScheduler.h.yml +0 -2
  444. data/build/test/preprocess/includes/TestTimerIntegrated/TestTimerIntegrated.c.yml +0 -9
  445. data/build/test/preprocess/includes/TestTimerIntegrated/TimerConfigurator.h.yml +0 -2
  446. data/build/test/preprocess/includes/TestTimerIntegrated/TimerInterruptHandler.h.yml +0 -2
  447. data/build/test/preprocess/includes/TestTimerModel/TaskScheduler.h.yml +0 -2
  448. data/build/test/preprocess/includes/TestTimerModel/TestTimerModel.c.yml +0 -5
  449. data/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c.yml +0 -4
  450. data/build/test/preprocess/includes/TestUsartConductor/TaskScheduler.h.yml +0 -2
  451. data/build/test/preprocess/includes/TestUsartConductor/TestUsartConductor.c.yml +0 -7
  452. data/build/test/preprocess/includes/TestUsartConductor/UsartHardware.h.yml +0 -2
  453. data/build/test/preprocess/includes/TestUsartConductor/UsartModel.h.yml +0 -2
  454. data/build/test/preprocess/includes/TestUsartHardware/TestUsartHardware.c.yml +0 -6
  455. data/build/test/preprocess/includes/TestUsartHardware/UsartConfigurator.h.yml +0 -2
  456. data/build/test/preprocess/includes/TestUsartHardware/UsartPutChar.h.yml +0 -2
  457. data/build/test/preprocess/includes/TestUsartIntegrated/TaskScheduler.h.yml +0 -2
  458. data/build/test/preprocess/includes/TestUsartIntegrated/TemperatureFilter.h.yml +0 -2
  459. data/build/test/preprocess/includes/TestUsartIntegrated/TestUsartIntegrated.c.yml +0 -12
  460. data/build/test/preprocess/includes/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h.yml +0 -2
  461. data/build/test/preprocess/includes/TestUsartIntegrated/UsartConfigurator.h.yml +0 -2
  462. data/build/test/preprocess/includes/TestUsartIntegrated/UsartPutChar.h.yml +0 -2
  463. data/build/test/preprocess/includes/TestUsartModel/TemperatureFilter.h.yml +0 -2
  464. data/build/test/preprocess/includes/TestUsartModel/TestUsartModel.c.yml +0 -7
  465. data/build/test/preprocess/includes/TestUsartModel/UsartBaudRateRegisterCalculator.h.yml +0 -2
  466. data/build/test/results/TestAdcConductor.pass +0 -47
  467. data/build/test/results/TestAdcHardware.pass +0 -31
  468. data/build/test/results/TestAdcModel.pass +0 -27
  469. data/build/test/results/TestExecutor.pass +0 -23
  470. data/build/test/results/TestMain.pass +0 -19
  471. data/build/test/results/TestModel.pass +0 -19
  472. data/build/test/results/TestTaskScheduler.pass +0 -47
  473. data/build/test/results/TestTemperatureCalculator.pass +0 -23
  474. data/build/test/results/TestTemperatureFilter.pass +0 -31
  475. data/build/test/results/TestTimerConductor.pass +0 -23
  476. data/build/test/results/TestTimerHardware.pass +0 -19
  477. data/build/test/results/TestTimerIntegrated.pass +0 -23
  478. data/build/test/results/TestTimerModel.pass +0 -19
  479. data/build/test/results/TestUsartBaudRateRegisterCalculator.pass +0 -19
  480. data/build/test/results/TestUsartConductor.pass +0 -27
  481. data/build/test/results/TestUsartHardware.pass +0 -23
  482. data/build/test/results/TestUsartIntegrated.pass +0 -23
  483. data/build/test/results/TestUsartModel.pass +0 -31
  484. data/build/test/runners/TestAdcConductor_runner.c +0 -109
  485. data/build/test/runners/TestAdcHardware_runner.c +0 -100
  486. data/build/test/runners/TestAdcModel_runner.c +0 -102
  487. data/build/test/runners/TestExecutor_runner.c +0 -108
  488. data/build/test/runners/TestMain_runner.c +0 -90
  489. data/build/test/runners/TestModel_runner.c +0 -94
  490. data/build/test/runners/TestTaskScheduler_runner.c +0 -98
  491. data/build/test/runners/TestTemperatureCalculator_runner.c +0 -85
  492. data/build/test/runners/TestTemperatureFilter_runner.c +0 -90
  493. data/build/test/runners/TestTimerConductor_runner.c +0 -100
  494. data/build/test/runners/TestTimerHardware_runner.c +0 -90
  495. data/build/test/runners/TestTimerIntegrated_runner.c +0 -102
  496. data/build/test/runners/TestTimerModel_runner.c +0 -90
  497. data/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c +0 -84
  498. data/build/test/runners/TestUsartConductor_runner.c +0 -102
  499. data/build/test/runners/TestUsartHardware_runner.c +0 -96
  500. data/build/test/runners/TestUsartIntegrated_runner.c +0 -111
  501. data/build/test/runners/TestUsartModel_runner.c +0 -101
  502. data/build/vendor/cmock/src/cmock.c +0 -231
  503. data/build/vendor/cmock/src/cmock.h +0 -47
  504. data/build/vendor/cmock/src/cmock_internals.h +0 -91
  505. data/build/vendor/cmock/src/meson.build +0 -12
  506. data/build/vendor/unity/src/meson.build +0 -17
  507. data/build/vendor/unity/src/unity.c +0 -2501
  508. data/build/vendor/unity/src/unity.h +0 -698
  509. data/build/vendor/unity/src/unity_internals.h +0 -1183
  510. data/ceedling.sublime-project +0 -28
  511. data/ceedling.sublime-workspace +0 -6146
  512. data/examples/temp_sensor/build/test/dependencies/AdcConductor.d +0 -2
  513. data/examples/temp_sensor/build/test/dependencies/AdcHardware.d +0 -3
  514. data/examples/temp_sensor/build/test/dependencies/AdcModel.d +0 -3
  515. data/examples/temp_sensor/build/test/dependencies/Executor.d +0 -3
  516. data/examples/temp_sensor/build/test/dependencies/Main.d +0 -10
  517. data/examples/temp_sensor/build/test/dependencies/MockAdcConductor.d +0 -7
  518. data/examples/temp_sensor/build/test/dependencies/MockAdcHardware.d +0 -7
  519. data/examples/temp_sensor/build/test/dependencies/MockAdcHardwareConfigurator.d +0 -8
  520. data/examples/temp_sensor/build/test/dependencies/MockAdcModel.d +0 -7
  521. data/examples/temp_sensor/build/test/dependencies/MockAdcTemperatureSensor.d +0 -8
  522. data/examples/temp_sensor/build/test/dependencies/MockExecutor.d +0 -7
  523. data/examples/temp_sensor/build/test/dependencies/MockIntrinsicsWrapper.d +0 -7
  524. data/examples/temp_sensor/build/test/dependencies/MockModel.d +0 -7
  525. data/examples/temp_sensor/build/test/dependencies/MockTaskScheduler.d +0 -7
  526. data/examples/temp_sensor/build/test/dependencies/MockTemperatureCalculator.d +0 -8
  527. data/examples/temp_sensor/build/test/dependencies/MockTemperatureFilter.d +0 -8
  528. data/examples/temp_sensor/build/test/dependencies/MockTimerConductor.d +0 -7
  529. data/examples/temp_sensor/build/test/dependencies/MockTimerConfigurator.d +0 -8
  530. data/examples/temp_sensor/build/test/dependencies/MockTimerHardware.d +0 -7
  531. data/examples/temp_sensor/build/test/dependencies/MockTimerInterruptHandler.d +0 -8
  532. data/examples/temp_sensor/build/test/dependencies/MockTimerModel.d +0 -7
  533. data/examples/temp_sensor/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d +0 -8
  534. data/examples/temp_sensor/build/test/dependencies/MockUsartConductor.d +0 -7
  535. data/examples/temp_sensor/build/test/dependencies/MockUsartConfigurator.d +0 -8
  536. data/examples/temp_sensor/build/test/dependencies/MockUsartHardware.d +0 -7
  537. data/examples/temp_sensor/build/test/dependencies/MockUsartModel.d +0 -7
  538. data/examples/temp_sensor/build/test/dependencies/MockUsartPutChar.d +0 -7
  539. data/examples/temp_sensor/build/test/dependencies/Model.d +0 -2
  540. data/examples/temp_sensor/build/test/dependencies/TaskScheduler.d +0 -2
  541. data/examples/temp_sensor/build/test/dependencies/TemperatureCalculator.d +0 -2
  542. data/examples/temp_sensor/build/test/dependencies/TemperatureFilter.d +0 -2
  543. data/examples/temp_sensor/build/test/dependencies/TestAdcConductor.d +0 -6
  544. data/examples/temp_sensor/build/test/dependencies/TestAdcConductor_runner.d +0 -7
  545. data/examples/temp_sensor/build/test/dependencies/TestAdcHardware.d +0 -8
  546. data/examples/temp_sensor/build/test/dependencies/TestAdcHardware_runner.d +0 -9
  547. data/examples/temp_sensor/build/test/dependencies/TestAdcModel.d +0 -9
  548. data/examples/temp_sensor/build/test/dependencies/TestAdcModel_runner.d +0 -10
  549. data/examples/temp_sensor/build/test/dependencies/TestExecutor.d +0 -10
  550. data/examples/temp_sensor/build/test/dependencies/TestExecutor_runner.d +0 -11
  551. data/examples/temp_sensor/build/test/dependencies/TestMain.d +0 -4
  552. data/examples/temp_sensor/build/test/dependencies/TestMain_runner.d +0 -6
  553. data/examples/temp_sensor/build/test/dependencies/TestModel.d +0 -7
  554. data/examples/temp_sensor/build/test/dependencies/TestModel_runner.d +0 -8
  555. data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler.d +0 -4
  556. data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler_runner.d +0 -4
  557. data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator.d +0 -3
  558. data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator_runner.d +0 -4
  559. data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter.d +0 -4
  560. data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter_runner.d +0 -4
  561. data/examples/temp_sensor/build/test/dependencies/TestTimerConductor.d +0 -9
  562. data/examples/temp_sensor/build/test/dependencies/TestTimerConductor_runner.d +0 -10
  563. data/examples/temp_sensor/build/test/dependencies/TestTimerHardware.d +0 -5
  564. data/examples/temp_sensor/build/test/dependencies/TestTimerHardware_runner.d +0 -7
  565. data/examples/temp_sensor/build/test/dependencies/TestTimerIntegrated.d +0 -10
  566. data/examples/temp_sensor/build/test/dependencies/TestTimerIntegrated_runner.d +0 -12
  567. data/examples/temp_sensor/build/test/dependencies/TestTimerModel.d +0 -5
  568. data/examples/temp_sensor/build/test/dependencies/TestTimerModel_runner.d +0 -7
  569. data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d +0 -4
  570. data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d +0 -4
  571. data/examples/temp_sensor/build/test/dependencies/TestUsartConductor.d +0 -10
  572. data/examples/temp_sensor/build/test/dependencies/TestUsartConductor_runner.d +0 -11
  573. data/examples/temp_sensor/build/test/dependencies/TestUsartHardware.d +0 -6
  574. data/examples/temp_sensor/build/test/dependencies/TestUsartHardware_runner.d +0 -8
  575. data/examples/temp_sensor/build/test/dependencies/TestUsartIntegrated.d +0 -15
  576. data/examples/temp_sensor/build/test/dependencies/TestUsartIntegrated_runner.d +0 -16
  577. data/examples/temp_sensor/build/test/dependencies/TestUsartModel.d +0 -7
  578. data/examples/temp_sensor/build/test/dependencies/TestUsartModel_runner.d +0 -9
  579. data/examples/temp_sensor/build/test/dependencies/TimerConductor.d +0 -3
  580. data/examples/temp_sensor/build/test/dependencies/TimerHardware.d +0 -2
  581. data/examples/temp_sensor/build/test/dependencies/TimerModel.d +0 -2
  582. data/examples/temp_sensor/build/test/dependencies/UnityHelper.d +0 -4
  583. data/examples/temp_sensor/build/test/dependencies/UsartBaudRateRegisterCalculator.d +0 -3
  584. data/examples/temp_sensor/build/test/dependencies/UsartConductor.d +0 -3
  585. data/examples/temp_sensor/build/test/dependencies/UsartHardware.d +0 -3
  586. data/examples/temp_sensor/build/test/dependencies/UsartModel.d +0 -3
  587. data/examples/temp_sensor/build/test/dependencies/cmock.d +0 -3
  588. data/examples/temp_sensor/build/test/dependencies/unity.d +0 -2
  589. data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcHardware.c +0 -445
  590. data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcHardware.h +0 -91
  591. data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcModel.c +0 -618
  592. data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcModel.h +0 -103
  593. data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.c +0 -317
  594. data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.h +0 -79
  595. data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.c +0 -351
  596. data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.h +0 -79
  597. data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTaskScheduler.c +0 -458
  598. data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTaskScheduler.h +0 -91
  599. data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureCalculator.c +0 -159
  600. data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureCalculator.h +0 -55
  601. data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureFilter.c +0 -347
  602. data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureFilter.h +0 -79
  603. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockAdcConductor.c +0 -556
  604. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockAdcConductor.h +0 -103
  605. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.c +0 -223
  606. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.h +0 -67
  607. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockModel.c +0 -129
  608. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockModel.h +0 -55
  609. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockTimerConductor.c +0 -223
  610. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockTimerConductor.h +0 -67
  611. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockUsartConductor.c +0 -223
  612. data/examples/temp_sensor/build/test/mocks/TestExecutor/MockUsartConductor.h +0 -67
  613. data/examples/temp_sensor/build/test/mocks/TestMain/MockExecutor.c +0 -240
  614. data/examples/temp_sensor/build/test/mocks/TestMain/MockExecutor.h +0 -67
  615. data/examples/temp_sensor/build/test/mocks/TestModel/MockTaskScheduler.c +0 -458
  616. data/examples/temp_sensor/build/test/mocks/TestModel/MockTaskScheduler.h +0 -91
  617. data/examples/temp_sensor/build/test/mocks/TestModel/MockTemperatureFilter.c +0 -347
  618. data/examples/temp_sensor/build/test/mocks/TestModel/MockTemperatureFilter.h +0 -79
  619. data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerHardware.c +0 -129
  620. data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerHardware.h +0 -55
  621. data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.c +0 -347
  622. data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.h +0 -79
  623. data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerModel.c +0 -142
  624. data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerModel.h +0 -55
  625. data/examples/temp_sensor/build/test/mocks/TestTimerHardware/MockTimerConfigurator.c +0 -787
  626. data/examples/temp_sensor/build/test/mocks/TestTimerHardware/MockTimerConfigurator.h +0 -139
  627. data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.c +0 -458
  628. data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.h +0 -91
  629. data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.c +0 -787
  630. data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.h +0 -139
  631. data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.c +0 -347
  632. data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.h +0 -79
  633. data/examples/temp_sensor/build/test/mocks/TestTimerModel/MockTaskScheduler.c +0 -458
  634. data/examples/temp_sensor/build/test/mocks/TestTimerModel/MockTaskScheduler.h +0 -91
  635. data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockTaskScheduler.c +0 -458
  636. data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockTaskScheduler.h +0 -91
  637. data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartHardware.c +0 -249
  638. data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartHardware.h +0 -67
  639. data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartModel.c +0 -368
  640. data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartModel.h +0 -79
  641. data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartConfigurator.c +0 -612
  642. data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartConfigurator.h +0 -115
  643. data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartPutChar.c +0 -142
  644. data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartPutChar.h +0 -55
  645. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.c +0 -458
  646. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.h +0 -91
  647. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.c +0 -347
  648. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.h +0 -79
  649. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.c +0 -166
  650. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.h +0 -55
  651. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.c +0 -612
  652. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.h +0 -115
  653. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.c +0 -142
  654. data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.h +0 -55
  655. data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockTemperatureFilter.c +0 -347
  656. data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockTemperatureFilter.h +0 -79
  657. data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.c +0 -166
  658. data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.h +0 -55
  659. data/examples/temp_sensor/build/test/out/TestAdcConductor/AdcConductor.o +0 -0
  660. data/examples/temp_sensor/build/test/out/TestAdcConductor/MockAdcHardware.o +0 -0
  661. data/examples/temp_sensor/build/test/out/TestAdcConductor/MockAdcModel.o +0 -0
  662. data/examples/temp_sensor/build/test/out/TestAdcConductor/TestAdcConductor.o +0 -0
  663. data/examples/temp_sensor/build/test/out/TestAdcConductor/TestAdcConductor.out +0 -0
  664. data/examples/temp_sensor/build/test/out/TestAdcConductor/TestAdcConductor_runner.o +0 -0
  665. data/examples/temp_sensor/build/test/out/TestAdcConductor/UnityHelper.o +0 -0
  666. data/examples/temp_sensor/build/test/out/TestAdcConductor/cmock.o +0 -0
  667. data/examples/temp_sensor/build/test/out/TestAdcConductor/unity.o +0 -0
  668. data/examples/temp_sensor/build/test/out/TestAdcHardware/AdcHardware.o +0 -0
  669. data/examples/temp_sensor/build/test/out/TestAdcHardware/MockAdcHardwareConfigurator.o +0 -0
  670. data/examples/temp_sensor/build/test/out/TestAdcHardware/MockAdcTemperatureSensor.o +0 -0
  671. data/examples/temp_sensor/build/test/out/TestAdcHardware/TestAdcHardware.o +0 -0
  672. data/examples/temp_sensor/build/test/out/TestAdcHardware/TestAdcHardware.out +0 -0
  673. data/examples/temp_sensor/build/test/out/TestAdcHardware/TestAdcHardware_runner.o +0 -0
  674. data/examples/temp_sensor/build/test/out/TestAdcHardware/UnityHelper.o +0 -0
  675. data/examples/temp_sensor/build/test/out/TestAdcHardware/cmock.o +0 -0
  676. data/examples/temp_sensor/build/test/out/TestAdcHardware/unity.o +0 -0
  677. data/examples/temp_sensor/build/test/out/TestAdcModel/AdcModel.o +0 -0
  678. data/examples/temp_sensor/build/test/out/TestAdcModel/MockTaskScheduler.o +0 -0
  679. data/examples/temp_sensor/build/test/out/TestAdcModel/MockTemperatureCalculator.o +0 -0
  680. data/examples/temp_sensor/build/test/out/TestAdcModel/MockTemperatureFilter.o +0 -0
  681. data/examples/temp_sensor/build/test/out/TestAdcModel/TestAdcModel.o +0 -0
  682. data/examples/temp_sensor/build/test/out/TestAdcModel/TestAdcModel.out +0 -0
  683. data/examples/temp_sensor/build/test/out/TestAdcModel/TestAdcModel_runner.o +0 -0
  684. data/examples/temp_sensor/build/test/out/TestAdcModel/UnityHelper.o +0 -0
  685. data/examples/temp_sensor/build/test/out/TestAdcModel/cmock.o +0 -0
  686. data/examples/temp_sensor/build/test/out/TestAdcModel/unity.o +0 -0
  687. data/examples/temp_sensor/build/test/out/TestExecutor/Executor.o +0 -0
  688. data/examples/temp_sensor/build/test/out/TestExecutor/MockAdcConductor.o +0 -0
  689. data/examples/temp_sensor/build/test/out/TestExecutor/MockIntrinsicsWrapper.o +0 -0
  690. data/examples/temp_sensor/build/test/out/TestExecutor/MockModel.o +0 -0
  691. data/examples/temp_sensor/build/test/out/TestExecutor/MockTimerConductor.o +0 -0
  692. data/examples/temp_sensor/build/test/out/TestExecutor/MockUsartConductor.o +0 -0
  693. data/examples/temp_sensor/build/test/out/TestExecutor/TestExecutor.o +0 -0
  694. data/examples/temp_sensor/build/test/out/TestExecutor/TestExecutor.out +0 -0
  695. data/examples/temp_sensor/build/test/out/TestExecutor/TestExecutor_runner.o +0 -0
  696. data/examples/temp_sensor/build/test/out/TestExecutor/UnityHelper.o +0 -0
  697. data/examples/temp_sensor/build/test/out/TestExecutor/cmock.o +0 -0
  698. data/examples/temp_sensor/build/test/out/TestExecutor/unity.o +0 -0
  699. data/examples/temp_sensor/build/test/out/TestMain/Main.o +0 -0
  700. data/examples/temp_sensor/build/test/out/TestMain/MockExecutor.o +0 -0
  701. data/examples/temp_sensor/build/test/out/TestMain/TestMain.o +0 -0
  702. data/examples/temp_sensor/build/test/out/TestMain/TestMain.out +0 -0
  703. data/examples/temp_sensor/build/test/out/TestMain/TestMain_runner.o +0 -0
  704. data/examples/temp_sensor/build/test/out/TestMain/UnityHelper.o +0 -0
  705. data/examples/temp_sensor/build/test/out/TestMain/cmock.o +0 -0
  706. data/examples/temp_sensor/build/test/out/TestMain/unity.o +0 -0
  707. data/examples/temp_sensor/build/test/out/TestModel/MockTaskScheduler.o +0 -0
  708. data/examples/temp_sensor/build/test/out/TestModel/MockTemperatureFilter.o +0 -0
  709. data/examples/temp_sensor/build/test/out/TestModel/Model.o +0 -0
  710. data/examples/temp_sensor/build/test/out/TestModel/TestModel.o +0 -0
  711. data/examples/temp_sensor/build/test/out/TestModel/TestModel.out +0 -0
  712. data/examples/temp_sensor/build/test/out/TestModel/TestModel_runner.o +0 -0
  713. data/examples/temp_sensor/build/test/out/TestModel/UnityHelper.o +0 -0
  714. data/examples/temp_sensor/build/test/out/TestModel/cmock.o +0 -0
  715. data/examples/temp_sensor/build/test/out/TestModel/unity.o +0 -0
  716. data/examples/temp_sensor/build/test/out/TestTaskScheduler/TaskScheduler.o +0 -0
  717. data/examples/temp_sensor/build/test/out/TestTaskScheduler/TestTaskScheduler.o +0 -0
  718. data/examples/temp_sensor/build/test/out/TestTaskScheduler/TestTaskScheduler.out +0 -0
  719. data/examples/temp_sensor/build/test/out/TestTaskScheduler/TestTaskScheduler_runner.o +0 -0
  720. data/examples/temp_sensor/build/test/out/TestTaskScheduler/UnityHelper.o +0 -0
  721. data/examples/temp_sensor/build/test/out/TestTaskScheduler/unity.o +0 -0
  722. data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TemperatureCalculator.o +0 -0
  723. data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.o +0 -0
  724. data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.out +0 -0
  725. data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator_runner.o +0 -0
  726. data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/UnityHelper.o +0 -0
  727. data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/unity.o +0 -0
  728. data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TemperatureFilter.o +0 -0
  729. data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TestTemperatureFilter.o +0 -0
  730. data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TestTemperatureFilter.out +0 -0
  731. data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TestTemperatureFilter_runner.o +0 -0
  732. data/examples/temp_sensor/build/test/out/TestTemperatureFilter/UnityHelper.o +0 -0
  733. data/examples/temp_sensor/build/test/out/TestTemperatureFilter/unity.o +0 -0
  734. data/examples/temp_sensor/build/test/out/TestTimerConductor/MockTimerHardware.o +0 -0
  735. data/examples/temp_sensor/build/test/out/TestTimerConductor/MockTimerInterruptHandler.o +0 -0
  736. data/examples/temp_sensor/build/test/out/TestTimerConductor/MockTimerModel.o +0 -0
  737. data/examples/temp_sensor/build/test/out/TestTimerConductor/TestTimerConductor.o +0 -0
  738. data/examples/temp_sensor/build/test/out/TestTimerConductor/TestTimerConductor.out +0 -0
  739. data/examples/temp_sensor/build/test/out/TestTimerConductor/TestTimerConductor_runner.o +0 -0
  740. data/examples/temp_sensor/build/test/out/TestTimerConductor/TimerConductor.o +0 -0
  741. data/examples/temp_sensor/build/test/out/TestTimerConductor/UnityHelper.o +0 -0
  742. data/examples/temp_sensor/build/test/out/TestTimerConductor/cmock.o +0 -0
  743. data/examples/temp_sensor/build/test/out/TestTimerConductor/unity.o +0 -0
  744. data/examples/temp_sensor/build/test/out/TestTimerHardware/MockTimerConfigurator.o +0 -0
  745. data/examples/temp_sensor/build/test/out/TestTimerHardware/TestTimerHardware.o +0 -0
  746. data/examples/temp_sensor/build/test/out/TestTimerHardware/TestTimerHardware.out +0 -0
  747. data/examples/temp_sensor/build/test/out/TestTimerHardware/TestTimerHardware_runner.o +0 -0
  748. data/examples/temp_sensor/build/test/out/TestTimerHardware/TimerHardware.o +0 -0
  749. data/examples/temp_sensor/build/test/out/TestTimerHardware/UnityHelper.o +0 -0
  750. data/examples/temp_sensor/build/test/out/TestTimerHardware/cmock.o +0 -0
  751. data/examples/temp_sensor/build/test/out/TestTimerHardware/unity.o +0 -0
  752. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/MockTaskScheduler.o +0 -0
  753. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/MockTimerConfigurator.o +0 -0
  754. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/MockTimerInterruptHandler.o +0 -0
  755. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TestTimerIntegrated.o +0 -0
  756. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TestTimerIntegrated.out +0 -0
  757. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TestTimerIntegrated_runner.o +0 -0
  758. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TimerConductor.o +0 -0
  759. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TimerHardware.o +0 -0
  760. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TimerModel.o +0 -0
  761. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/UnityHelper.o +0 -0
  762. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/cmock.o +0 -0
  763. data/examples/temp_sensor/build/test/out/TestTimerIntegrated/unity.o +0 -0
  764. data/examples/temp_sensor/build/test/out/TestTimerModel/MockTaskScheduler.o +0 -0
  765. data/examples/temp_sensor/build/test/out/TestTimerModel/TestTimerModel.o +0 -0
  766. data/examples/temp_sensor/build/test/out/TestTimerModel/TestTimerModel.out +0 -0
  767. data/examples/temp_sensor/build/test/out/TestTimerModel/TestTimerModel_runner.o +0 -0
  768. data/examples/temp_sensor/build/test/out/TestTimerModel/TimerModel.o +0 -0
  769. data/examples/temp_sensor/build/test/out/TestTimerModel/UnityHelper.o +0 -0
  770. data/examples/temp_sensor/build/test/out/TestTimerModel/cmock.o +0 -0
  771. data/examples/temp_sensor/build/test/out/TestTimerModel/unity.o +0 -0
  772. data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.o +0 -0
  773. data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.out +0 -0
  774. data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator_runner.o +0 -0
  775. data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/UnityHelper.o +0 -0
  776. data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/UsartBaudRateRegisterCalculator.o +0 -0
  777. data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/unity.o +0 -0
  778. data/examples/temp_sensor/build/test/out/TestUsartConductor/MockTaskScheduler.o +0 -0
  779. data/examples/temp_sensor/build/test/out/TestUsartConductor/MockUsartHardware.o +0 -0
  780. data/examples/temp_sensor/build/test/out/TestUsartConductor/MockUsartModel.o +0 -0
  781. data/examples/temp_sensor/build/test/out/TestUsartConductor/TestUsartConductor.o +0 -0
  782. data/examples/temp_sensor/build/test/out/TestUsartConductor/TestUsartConductor.out +0 -0
  783. data/examples/temp_sensor/build/test/out/TestUsartConductor/TestUsartConductor_runner.o +0 -0
  784. data/examples/temp_sensor/build/test/out/TestUsartConductor/UnityHelper.o +0 -0
  785. data/examples/temp_sensor/build/test/out/TestUsartConductor/UsartConductor.o +0 -0
  786. data/examples/temp_sensor/build/test/out/TestUsartConductor/cmock.o +0 -0
  787. data/examples/temp_sensor/build/test/out/TestUsartConductor/unity.o +0 -0
  788. data/examples/temp_sensor/build/test/out/TestUsartHardware/MockUsartConfigurator.o +0 -0
  789. data/examples/temp_sensor/build/test/out/TestUsartHardware/MockUsartPutChar.o +0 -0
  790. data/examples/temp_sensor/build/test/out/TestUsartHardware/TestUsartHardware.o +0 -0
  791. data/examples/temp_sensor/build/test/out/TestUsartHardware/TestUsartHardware.out +0 -0
  792. data/examples/temp_sensor/build/test/out/TestUsartHardware/TestUsartHardware_runner.o +0 -0
  793. data/examples/temp_sensor/build/test/out/TestUsartHardware/UnityHelper.o +0 -0
  794. data/examples/temp_sensor/build/test/out/TestUsartHardware/UsartHardware.o +0 -0
  795. data/examples/temp_sensor/build/test/out/TestUsartHardware/cmock.o +0 -0
  796. data/examples/temp_sensor/build/test/out/TestUsartHardware/unity.o +0 -0
  797. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockTaskScheduler.o +0 -0
  798. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockTemperatureFilter.o +0 -0
  799. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.o +0 -0
  800. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockUsartConfigurator.o +0 -0
  801. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockUsartPutChar.o +0 -0
  802. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/TestUsartIntegrated.o +0 -0
  803. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/TestUsartIntegrated.out +0 -0
  804. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/TestUsartIntegrated_runner.o +0 -0
  805. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UnityHelper.o +0 -0
  806. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UsartConductor.o +0 -0
  807. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UsartHardware.o +0 -0
  808. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UsartModel.o +0 -0
  809. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/cmock.o +0 -0
  810. data/examples/temp_sensor/build/test/out/TestUsartIntegrated/unity.o +0 -0
  811. data/examples/temp_sensor/build/test/out/TestUsartModel/MockTemperatureFilter.o +0 -0
  812. data/examples/temp_sensor/build/test/out/TestUsartModel/MockUsartBaudRateRegisterCalculator.o +0 -0
  813. data/examples/temp_sensor/build/test/out/TestUsartModel/TestUsartModel.o +0 -0
  814. data/examples/temp_sensor/build/test/out/TestUsartModel/TestUsartModel.out +0 -0
  815. data/examples/temp_sensor/build/test/out/TestUsartModel/TestUsartModel_runner.o +0 -0
  816. data/examples/temp_sensor/build/test/out/TestUsartModel/UnityHelper.o +0 -0
  817. data/examples/temp_sensor/build/test/out/TestUsartModel/UsartModel.o +0 -0
  818. data/examples/temp_sensor/build/test/out/TestUsartModel/cmock.o +0 -0
  819. data/examples/temp_sensor/build/test/out/TestUsartModel/unity.o +0 -0
  820. data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor/AdcHardware.h +0 -16
  821. data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor/AdcModel.h +0 -18
  822. data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor/TestAdcConductor.c +0 -106
  823. data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware/AdcHardwareConfigurator.h +0 -14
  824. data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware/AdcTemperatureSensor.h +0 -14
  825. data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware/TestAdcHardware.c +0 -59
  826. data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TaskScheduler.h +0 -16
  827. data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TemperatureCalculator.h +0 -10
  828. data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TemperatureFilter.h +0 -14
  829. data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TestAdcModel.c +0 -41
  830. data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/AdcConductor.h +0 -18
  831. data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/IntrinsicsWrapper.h +0 -10
  832. data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/Model.h +0 -10
  833. data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/TestExecutor.c +0 -45
  834. data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/TimerConductor.h +0 -12
  835. data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/UsartConductor.h +0 -10
  836. data/examples/temp_sensor/build/test/preprocess/files/TestMain/Executor.h +0 -12
  837. data/examples/temp_sensor/build/test/preprocess/files/TestMain/TestMain.c +0 -31
  838. data/examples/temp_sensor/build/test/preprocess/files/TestModel/TaskScheduler.h +0 -16
  839. data/examples/temp_sensor/build/test/preprocess/files/TestModel/TemperatureFilter.h +0 -14
  840. data/examples/temp_sensor/build/test/preprocess/files/TestModel/TestModel.c +0 -24
  841. data/examples/temp_sensor/build/test/preprocess/files/TestTaskScheduler/TestTaskScheduler.c +0 -168
  842. data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureCalculator/TestTemperatureCalculator.c +0 -52
  843. data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureFilter/TestTemperatureFilter.c +0 -163
  844. data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TestTimerConductor.c +0 -38
  845. data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TimerHardware.h +0 -10
  846. data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TimerInterruptHandler.h +0 -14
  847. data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TimerModel.h +0 -10
  848. data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware/TestTimerHardware.c +0 -35
  849. data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware/TimerConfigurator.h +0 -24
  850. data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TaskScheduler.h +0 -16
  851. data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TestTimerIntegrated.c +0 -54
  852. data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TimerConfigurator.h +0 -24
  853. data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TimerInterruptHandler.h +0 -14
  854. data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel/TaskScheduler.h +0 -16
  855. data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel/TestTimerModel.c +0 -21
  856. data/examples/temp_sensor/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c +0 -46
  857. data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/TaskScheduler.h +0 -16
  858. data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/TestUsartConductor.c +0 -47
  859. data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/UsartHardware.h +0 -12
  860. data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/UsartModel.h +0 -14
  861. data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware/TestUsartHardware.c +0 -47
  862. data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware/UsartConfigurator.h +0 -20
  863. data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware/UsartPutChar.h +0 -10
  864. data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/TaskScheduler.h +0 -16
  865. data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/TemperatureFilter.h +0 -14
  866. data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/TestUsartIntegrated.c +0 -57
  867. data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h +0 -10
  868. data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/UsartConfigurator.h +0 -20
  869. data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/UsartPutChar.h +0 -10
  870. data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel/TemperatureFilter.h +0 -14
  871. data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel/TestUsartModel.c +0 -64
  872. data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel/UsartBaudRateRegisterCalculator.h +0 -10
  873. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor/AdcHardware.h.yml +0 -2
  874. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor/AdcModel.h.yml +0 -2
  875. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor/TestAdcConductor.c.yml +0 -7
  876. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware/AdcHardwareConfigurator.h.yml +0 -2
  877. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware/AdcTemperatureSensor.h.yml +0 -2
  878. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware/TestAdcHardware.c.yml +0 -6
  879. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TaskScheduler.h.yml +0 -2
  880. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TemperatureCalculator.h.yml +0 -2
  881. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TemperatureFilter.h.yml +0 -2
  882. data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TestAdcModel.c.yml +0 -7
  883. data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/AdcConductor.h.yml +0 -2
  884. data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/IntrinsicsWrapper.h.yml +0 -1
  885. data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/Model.h.yml +0 -2
  886. data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/TestExecutor.c.yml +0 -9
  887. data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/TimerConductor.h.yml +0 -2
  888. data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/UsartConductor.h.yml +0 -1
  889. data/examples/temp_sensor/build/test/preprocess/includes/TestMain/Executor.h.yml +0 -2
  890. data/examples/temp_sensor/build/test/preprocess/includes/TestMain/TestMain.c.yml +0 -5
  891. data/examples/temp_sensor/build/test/preprocess/includes/TestModel/TaskScheduler.h.yml +0 -2
  892. data/examples/temp_sensor/build/test/preprocess/includes/TestModel/TemperatureFilter.h.yml +0 -2
  893. data/examples/temp_sensor/build/test/preprocess/includes/TestModel/TestModel.c.yml +0 -6
  894. data/examples/temp_sensor/build/test/preprocess/includes/TestTaskScheduler/TestTaskScheduler.c.yml +0 -4
  895. data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureCalculator/TestTemperatureCalculator.c.yml +0 -3
  896. data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureFilter/TestTemperatureFilter.c.yml +0 -4
  897. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TestTimerConductor.c.yml +0 -7
  898. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TimerHardware.h.yml +0 -2
  899. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TimerInterruptHandler.h.yml +0 -2
  900. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TimerModel.h.yml +0 -2
  901. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware/TestTimerHardware.c.yml +0 -5
  902. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware/TimerConfigurator.h.yml +0 -2
  903. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TaskScheduler.h.yml +0 -2
  904. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TestTimerIntegrated.c.yml +0 -9
  905. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TimerConfigurator.h.yml +0 -2
  906. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TimerInterruptHandler.h.yml +0 -2
  907. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel/TaskScheduler.h.yml +0 -2
  908. data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel/TestTimerModel.c.yml +0 -5
  909. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c.yml +0 -4
  910. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/TaskScheduler.h.yml +0 -2
  911. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/TestUsartConductor.c.yml +0 -7
  912. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/UsartHardware.h.yml +0 -2
  913. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/UsartModel.h.yml +0 -2
  914. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware/TestUsartHardware.c.yml +0 -6
  915. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware/UsartConfigurator.h.yml +0 -2
  916. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware/UsartPutChar.h.yml +0 -2
  917. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/TaskScheduler.h.yml +0 -2
  918. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/TemperatureFilter.h.yml +0 -2
  919. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/TestUsartIntegrated.c.yml +0 -12
  920. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h.yml +0 -2
  921. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/UsartConfigurator.h.yml +0 -2
  922. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/UsartPutChar.h.yml +0 -2
  923. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel/TemperatureFilter.h.yml +0 -2
  924. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel/TestUsartModel.c.yml +0 -7
  925. data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel/UsartBaudRateRegisterCalculator.h.yml +0 -2
  926. data/examples/temp_sensor/build/test/results/TestAdcConductor.pass +0 -47
  927. data/examples/temp_sensor/build/test/results/TestAdcHardware.pass +0 -31
  928. data/examples/temp_sensor/build/test/results/TestAdcModel.pass +0 -27
  929. data/examples/temp_sensor/build/test/results/TestExecutor.pass +0 -23
  930. data/examples/temp_sensor/build/test/results/TestMain.pass +0 -19
  931. data/examples/temp_sensor/build/test/results/TestModel.pass +0 -19
  932. data/examples/temp_sensor/build/test/results/TestTaskScheduler.pass +0 -47
  933. data/examples/temp_sensor/build/test/results/TestTemperatureCalculator.pass +0 -23
  934. data/examples/temp_sensor/build/test/results/TestTemperatureFilter.pass +0 -31
  935. data/examples/temp_sensor/build/test/results/TestTimerConductor.pass +0 -23
  936. data/examples/temp_sensor/build/test/results/TestTimerHardware.pass +0 -19
  937. data/examples/temp_sensor/build/test/results/TestTimerIntegrated.pass +0 -23
  938. data/examples/temp_sensor/build/test/results/TestTimerModel.pass +0 -19
  939. data/examples/temp_sensor/build/test/results/TestUsartBaudRateRegisterCalculator.pass +0 -19
  940. data/examples/temp_sensor/build/test/results/TestUsartConductor.pass +0 -27
  941. data/examples/temp_sensor/build/test/results/TestUsartHardware.pass +0 -23
  942. data/examples/temp_sensor/build/test/results/TestUsartIntegrated.pass +0 -23
  943. data/examples/temp_sensor/build/test/results/TestUsartModel.pass +0 -31
  944. data/examples/temp_sensor/build/test/runners/TestAdcConductor_runner.c +0 -109
  945. data/examples/temp_sensor/build/test/runners/TestAdcHardware_runner.c +0 -100
  946. data/examples/temp_sensor/build/test/runners/TestAdcModel_runner.c +0 -102
  947. data/examples/temp_sensor/build/test/runners/TestExecutor_runner.c +0 -108
  948. data/examples/temp_sensor/build/test/runners/TestMain_runner.c +0 -90
  949. data/examples/temp_sensor/build/test/runners/TestModel_runner.c +0 -94
  950. data/examples/temp_sensor/build/test/runners/TestTaskScheduler_runner.c +0 -98
  951. data/examples/temp_sensor/build/test/runners/TestTemperatureCalculator_runner.c +0 -85
  952. data/examples/temp_sensor/build/test/runners/TestTemperatureFilter_runner.c +0 -90
  953. data/examples/temp_sensor/build/test/runners/TestTimerConductor_runner.c +0 -100
  954. data/examples/temp_sensor/build/test/runners/TestTimerHardware_runner.c +0 -90
  955. data/examples/temp_sensor/build/test/runners/TestTimerIntegrated_runner.c +0 -102
  956. data/examples/temp_sensor/build/test/runners/TestTimerModel_runner.c +0 -90
  957. data/examples/temp_sensor/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c +0 -84
  958. data/examples/temp_sensor/build/test/runners/TestUsartConductor_runner.c +0 -102
  959. data/examples/temp_sensor/build/test/runners/TestUsartHardware_runner.c +0 -96
  960. data/examples/temp_sensor/build/test/runners/TestUsartIntegrated_runner.c +0 -111
  961. data/examples/temp_sensor/build/test/runners/TestUsartModel_runner.c +0 -101
  962. data/examples/temp_sensor/build/vendor/cmock/src/cmock.c +0 -231
  963. data/examples/temp_sensor/build/vendor/cmock/src/cmock.h +0 -47
  964. data/examples/temp_sensor/build/vendor/cmock/src/cmock_internals.h +0 -91
  965. data/examples/temp_sensor/build/vendor/cmock/src/meson.build +0 -12
  966. data/examples/temp_sensor/build/vendor/unity/src/meson.build +0 -17
  967. data/examples/temp_sensor/build/vendor/unity/src/unity.c +0 -2501
  968. data/examples/temp_sensor/build/vendor/unity/src/unity.h +0 -698
  969. data/examples/temp_sensor/build/vendor/unity/src/unity_internals.h +0 -1183
  970. data/out.fail +0 -25
  971. data/plugins/dependencies/example/boss/build/artifacts/release/DepTest +0 -0
  972. data/plugins/dependencies/example/boss/build/artifacts/test/test_boss.log +0 -0
  973. data/plugins/dependencies/example/boss/build/release/DepTest +0 -0
  974. data/plugins/dependencies/example/boss/build/release/cache/input.yml +0 -371
  975. data/plugins/dependencies/example/boss/build/release/dependencies/boss.d +0 -3
  976. data/plugins/dependencies/example/boss/build/release/dependencies/main.d +0 -2
  977. data/plugins/dependencies/example/boss/build/release/out/boss.o +0 -0
  978. data/plugins/dependencies/example/boss/build/release/out/main.o +0 -0
  979. data/plugins/dependencies/example/boss/build/test/cache/input.yml +0 -371
  980. data/plugins/dependencies/example/boss/build/test/dependencies/boss.d +0 -3
  981. data/plugins/dependencies/example/boss/build/test/dependencies/cmock.d +0 -5
  982. data/plugins/dependencies/example/boss/build/test/dependencies/mock_libworker.d +0 -8
  983. data/plugins/dependencies/example/boss/build/test/dependencies/mock_supervisor.d +0 -8
  984. data/plugins/dependencies/example/boss/build/test/dependencies/test_boss.d +0 -7
  985. data/plugins/dependencies/example/boss/build/test/dependencies/test_boss_runner.d +0 -9
  986. data/plugins/dependencies/example/boss/build/test/dependencies/unity.d +0 -3
  987. data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_libworker.c +0 -386
  988. data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_libworker.h +0 -82
  989. data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_supervisor.c +0 -309
  990. data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_supervisor.h +0 -72
  991. data/plugins/dependencies/example/boss/build/test/out/test_boss/boss.o +0 -0
  992. data/plugins/dependencies/example/boss/build/test/out/test_boss/cmock.o +0 -0
  993. data/plugins/dependencies/example/boss/build/test/out/test_boss/mock_libworker.o +0 -0
  994. data/plugins/dependencies/example/boss/build/test/out/test_boss/mock_supervisor.o +0 -0
  995. data/plugins/dependencies/example/boss/build/test/out/test_boss/test_boss.o +0 -0
  996. data/plugins/dependencies/example/boss/build/test/out/test_boss/test_boss.out +0 -0
  997. data/plugins/dependencies/example/boss/build/test/out/test_boss/test_boss_runner.o +0 -0
  998. data/plugins/dependencies/example/boss/build/test/out/test_boss/unity.o +0 -0
  999. data/plugins/dependencies/example/boss/build/test/preprocess/files/test_boss/libworker.h +0 -22
  1000. data/plugins/dependencies/example/boss/build/test/preprocess/files/test_boss/supervisor.h +0 -20
  1001. data/plugins/dependencies/example/boss/build/test/preprocess/files/test_boss/test_boss.c +0 -142
  1002. data/plugins/dependencies/example/boss/build/test/preprocess/includes/test_boss/libworker.h.yml +0 -9
  1003. data/plugins/dependencies/example/boss/build/test/preprocess/includes/test_boss/supervisor.h.yml +0 -9
  1004. data/plugins/dependencies/example/boss/build/test/preprocess/includes/test_boss/test_boss.c.yml +0 -15
  1005. data/plugins/dependencies/example/boss/build/test/results/test_boss.pass +0 -27
  1006. data/plugins/dependencies/example/boss/build/test/runners/test_boss_runner.c +0 -148
  1007. data/plugins/dependencies/example/boss/build/vendor/cmock/src/cmock.c +0 -234
  1008. data/plugins/dependencies/example/boss/build/vendor/cmock/src/cmock.h +0 -52
  1009. data/plugins/dependencies/example/boss/build/vendor/cmock/src/cmock_internals.h +0 -96
  1010. data/plugins/dependencies/example/boss/build/vendor/cmock/src/meson.build +0 -12
  1011. data/plugins/dependencies/example/boss/build/vendor/unity/src/meson.build +0 -17
  1012. data/plugins/dependencies/example/boss/build/vendor/unity/src/unity.c +0 -2471
  1013. data/plugins/dependencies/example/boss/build/vendor/unity/src/unity.h +0 -702
  1014. data/plugins/dependencies/example/boss/build/vendor/unity/src/unity_internals.h +0 -1153
  1015. data/plugins/fake_function_framework/README.md +0 -250
  1016. data/plugins/fake_function_framework/Rakefile +0 -19
  1017. data/plugins/fake_function_framework/examples/fff_example/project.yml +0 -71
  1018. data/plugins/fake_function_framework/examples/fff_example/rakefile.rb +0 -7
  1019. data/plugins/fake_function_framework/examples/fff_example/src/bar.c +0 -1
  1020. data/plugins/fake_function_framework/examples/fff_example/src/bar.h +0 -14
  1021. data/plugins/fake_function_framework/examples/fff_example/src/custom_types.h +0 -6
  1022. data/plugins/fake_function_framework/examples/fff_example/src/display.c +0 -7
  1023. data/plugins/fake_function_framework/examples/fff_example/src/display.h +0 -16
  1024. data/plugins/fake_function_framework/examples/fff_example/src/event_processor.c +0 -93
  1025. data/plugins/fake_function_framework/examples/fff_example/src/event_processor.h +0 -11
  1026. data/plugins/fake_function_framework/examples/fff_example/src/foo.c +0 -16
  1027. data/plugins/fake_function_framework/examples/fff_example/src/foo.h +0 -8
  1028. data/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.c +0 -1
  1029. data/plugins/fake_function_framework/examples/fff_example/src/subfolder/zzz.h +0 -6
  1030. data/plugins/fake_function_framework/examples/fff_example/test/test_event_processor.c +0 -155
  1031. data/plugins/fake_function_framework/examples/fff_example/test/test_foo.c +0 -47
  1032. data/plugins/fake_function_framework/lib/fake_function_framework.rb +0 -87
  1033. data/plugins/fake_function_framework/lib/fff_mock_generator.rb +0 -163
  1034. data/plugins/fake_function_framework/spec/fff_mock_header_generator_spec.rb +0 -304
  1035. data/plugins/fake_function_framework/spec/fff_mock_source_generator_spec.rb +0 -149
  1036. data/plugins/fake_function_framework/spec/header_generator.rb +0 -51
  1037. data/plugins/fake_function_framework/spec/spec_helper.rb +0 -96
  1038. data/plugins/fake_function_framework/src/fff_unity_helper.h +0 -33
  1039. data/plugins/fff/examples/fff_example/build/test/cache/input.yml +0 -263
  1040. data/plugins/fff/examples/fff_example/build/test/dependencies/cmock.d +0 -5
  1041. data/plugins/fff/examples/fff_example/build/test/dependencies/event_processor.d +0 -2
  1042. data/plugins/fff/examples/fff_example/build/test/dependencies/foo.d +0 -2
  1043. data/plugins/fff/examples/fff_example/build/test/dependencies/mock_bar.d +0 -3
  1044. data/plugins/fff/examples/fff_example/build/test/dependencies/mock_display.d +0 -5
  1045. data/plugins/fff/examples/fff_example/build/test/dependencies/mock_zzz.d +0 -3
  1046. data/plugins/fff/examples/fff_example/build/test/dependencies/test_event_processor.d +0 -5
  1047. data/plugins/fff/examples/fff_example/build/test/dependencies/test_event_processor_runner.d +0 -8
  1048. data/plugins/fff/examples/fff_example/build/test/dependencies/test_foo.d +0 -6
  1049. data/plugins/fff/examples/fff_example/build/test/dependencies/test_foo_runner.d +0 -8
  1050. data/plugins/fff/examples/fff_example/build/test/dependencies/unity.d +0 -3
  1051. data/plugins/fff/examples/fff_example/build/test/mocks/test_event_processor/mock_display.c +0 -43
  1052. data/plugins/fff/examples/fff_example/build/test/mocks/test_event_processor/mock_display.h +0 -35
  1053. data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_bar.c +0 -37
  1054. data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_bar.h +0 -31
  1055. data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_zzz.c +0 -25
  1056. data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_zzz.h +0 -25
  1057. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/cmock.o +0 -0
  1058. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/event_processor.o +0 -0
  1059. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/mock_display.o +0 -0
  1060. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/test_event_processor.o +0 -0
  1061. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/test_event_processor.out +0 -0
  1062. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/test_event_processor_runner.o +0 -0
  1063. data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/unity.o +0 -0
  1064. data/plugins/fff/examples/fff_example/build/test/out/test_foo/cmock.o +0 -0
  1065. data/plugins/fff/examples/fff_example/build/test/out/test_foo/foo.o +0 -0
  1066. data/plugins/fff/examples/fff_example/build/test/out/test_foo/mock_bar.o +0 -0
  1067. data/plugins/fff/examples/fff_example/build/test/out/test_foo/mock_zzz.o +0 -0
  1068. data/plugins/fff/examples/fff_example/build/test/out/test_foo/test_foo.o +0 -0
  1069. data/plugins/fff/examples/fff_example/build/test/out/test_foo/test_foo.out +0 -0
  1070. data/plugins/fff/examples/fff_example/build/test/out/test_foo/test_foo_runner.o +0 -0
  1071. data/plugins/fff/examples/fff_example/build/test/out/test_foo/unity.o +0 -0
  1072. data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_event_processor/display.h +0 -38
  1073. data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_event_processor/test_event_processor.c +0 -140
  1074. data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_foo/bar.h +0 -32
  1075. data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_foo/test_foo.c +0 -58
  1076. data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_foo/zzz.h +0 -18
  1077. data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_event_processor/display.h.yml +0 -10
  1078. data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_event_processor/test_event_processor.c.yml +0 -12
  1079. data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_foo/bar.h.yml +0 -10
  1080. data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_foo/test_foo.c.yml +0 -13
  1081. data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_foo/zzz.h.yml +0 -9
  1082. data/plugins/fff/examples/fff_example/build/test/results/test_event_processor.pass +0 -43
  1083. data/plugins/fff/examples/fff_example/build/test/results/test_foo.pass +0 -31
  1084. data/plugins/fff/examples/fff_example/build/test/runners/test_event_processor_runner.c +0 -148
  1085. data/plugins/fff/examples/fff_example/build/test/runners/test_foo_runner.c +0 -146
  1086. data/plugins/fff/examples/fff_example/build/vendor/cmock/src/cmock.c +0 -234
  1087. data/plugins/fff/examples/fff_example/build/vendor/cmock/src/cmock.h +0 -52
  1088. data/plugins/fff/examples/fff_example/build/vendor/cmock/src/cmock_internals.h +0 -96
  1089. data/plugins/fff/examples/fff_example/build/vendor/cmock/src/meson.build +0 -12
  1090. data/plugins/fff/examples/fff_example/build/vendor/unity/src/meson.build +0 -17
  1091. data/plugins/fff/examples/fff_example/build/vendor/unity/src/unity.c +0 -2471
  1092. data/plugins/fff/examples/fff_example/build/vendor/unity/src/unity.h +0 -702
  1093. data/plugins/fff/examples/fff_example/build/vendor/unity/src/unity_internals.h +0 -1153
  1094. data/plugins/module_generator/example/build/test/cache/input.yml +0 -269
  1095. data/plugins/module_generator/example/build/vendor/cmock/src/meson.build +0 -12
  1096. data/plugins/module_generator/example/build/vendor/unity/src/meson.build +0 -17
@@ -1,1153 +0,0 @@
1
- /* =========================================================================
2
- Ceedling - Test-Centered Build System for C
3
- ThrowTheSwitch.org
4
- Copyright (c) 2010-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5
- SPDX-License-Identifier: MIT
6
- ========================================================================= */
7
-
8
-
9
-
10
-
11
-
12
- #ifndef UNITY_INTERNALS_H
13
- #define UNITY_INTERNALS_H
14
-
15
- #ifdef UNITY_INCLUDE_CONFIG_H
16
- #include "unity_config.h"
17
- #endif
18
-
19
- #ifndef UNITY_EXCLUDE_SETJMP_H
20
- #include <setjmp.h>
21
- #endif
22
-
23
- #ifndef UNITY_EXCLUDE_MATH_H
24
- #include <math.h>
25
- #endif
26
-
27
- #ifndef UNITY_EXCLUDE_STDDEF_H
28
- #include <stddef.h>
29
- #endif
30
-
31
- #ifdef UNITY_INCLUDE_PRINT_FORMATTED
32
- #include <stdarg.h>
33
- #endif
34
-
35
- /* Unity Attempts to Auto-Detect Integer Types
36
- * Attempt 1: UINT_MAX, ULONG_MAX in <limits.h>, or default to 32 bits
37
- * Attempt 2: UINTPTR_MAX in <stdint.h>, or default to same size as long
38
- * The user may override any of these derived constants:
39
- * UNITY_INT_WIDTH, UNITY_LONG_WIDTH, UNITY_POINTER_WIDTH */
40
- #ifndef UNITY_EXCLUDE_STDINT_H
41
- #include <stdint.h>
42
- #endif
43
-
44
- #ifndef UNITY_EXCLUDE_LIMITS_H
45
- #include <limits.h>
46
- #endif
47
-
48
- #if defined(__GNUC__) || defined(__clang__)
49
- #define UNITY_FUNCTION_ATTR(a) __attribute__((a))
50
- #else
51
- #define UNITY_FUNCTION_ATTR(a) /* ignore */
52
- #endif
53
-
54
- #ifndef UNITY_NORETURN
55
- #if defined(__cplusplus)
56
- #if __cplusplus >= 201103L
57
- #define UNITY_NORETURN [[ noreturn ]]
58
- #endif
59
- #elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
60
- #if defined(_WIN32) && defined(_MSC_VER)
61
- /* We are using MSVC compiler on Windows platform. */
62
- /* Not all Windows SDKs supports <stdnoreturn.h>, but compiler can support C11: */
63
- /* https://devblogs.microsoft.com/cppblog/c11-and-c17-standard-support-arriving-in-msvc/ */
64
- /* Not sure, that Mingw compilers has Windows SDK headers at all. */
65
- #include <sdkddkver.h>
66
- #endif
67
-
68
- /* Using Windows SDK predefined macro for detecting supported SDK with MSVC compiler. */
69
- /* Mingw GCC should work without that fixes. */
70
- /* Based on: */
71
- /* https://docs.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt?view=msvc-170 */
72
- /* NTDDI_WIN10_FE is equal to Windows 10 SDK 2104 */
73
- #if defined(_MSC_VER) && ((!defined(NTDDI_WIN10_FE)) || WDK_NTDDI_VERSION < NTDDI_WIN10_FE)
74
- /* Based on tests and: */
75
- /* https://docs.microsoft.com/en-us/cpp/c-language/noreturn?view=msvc-170 */
76
- /* https://en.cppreference.com/w/c/language/_Noreturn */
77
- #define UNITY_NORETURN _Noreturn
78
- #else /* Using newer Windows SDK or not MSVC compiler */
79
- #include <stdnoreturn.h>
80
- #define UNITY_NORETURN noreturn
81
- #endif
82
- #endif
83
- #endif
84
- #ifndef UNITY_NORETURN
85
- #define UNITY_NORETURN UNITY_FUNCTION_ATTR(__noreturn__)
86
- #endif
87
-
88
- /*-------------------------------------------------------
89
- * Guess Widths If Not Specified
90
- *-------------------------------------------------------*/
91
-
92
- /* Determine the size of an int, if not already specified.
93
- * We cannot use sizeof(int), because it is not yet defined
94
- * at this stage in the translation of the C program.
95
- * Also sizeof(int) does return the size in addressable units on all platforms,
96
- * which may not necessarily be the size in bytes.
97
- * Therefore, infer it from UINT_MAX if possible. */
98
- #ifndef UNITY_INT_WIDTH
99
- #ifdef UINT_MAX
100
- #if (UINT_MAX == 0xFFFF)
101
- #define UNITY_INT_WIDTH (16)
102
- #elif (UINT_MAX == 0xFFFFFFFF)
103
- #define UNITY_INT_WIDTH (32)
104
- #elif (UINT_MAX == 0xFFFFFFFFFFFFFFFF)
105
- #define UNITY_INT_WIDTH (64)
106
- #endif
107
- #else /* Set to default */
108
- #define UNITY_INT_WIDTH (32)
109
- #endif /* UINT_MAX */
110
- #endif
111
-
112
- /* Determine the size of a long, if not already specified. */
113
- #ifndef UNITY_LONG_WIDTH
114
- #ifdef ULONG_MAX
115
- #if (ULONG_MAX == 0xFFFF)
116
- #define UNITY_LONG_WIDTH (16)
117
- #elif (ULONG_MAX == 0xFFFFFFFF)
118
- #define UNITY_LONG_WIDTH (32)
119
- #elif (ULONG_MAX == 0xFFFFFFFFFFFFFFFF)
120
- #define UNITY_LONG_WIDTH (64)
121
- #endif
122
- #else /* Set to default */
123
- #define UNITY_LONG_WIDTH (32)
124
- #endif /* ULONG_MAX */
125
- #endif
126
-
127
- /* Determine the size of a pointer, if not already specified. */
128
- #ifndef UNITY_POINTER_WIDTH
129
- #ifdef UINTPTR_MAX
130
- #if (UINTPTR_MAX <= 0xFFFF)
131
- #define UNITY_POINTER_WIDTH (16)
132
- #elif (UINTPTR_MAX <= 0xFFFFFFFF)
133
- #define UNITY_POINTER_WIDTH (32)
134
- #elif (UINTPTR_MAX <= 0xFFFFFFFFFFFFFFFF)
135
- #define UNITY_POINTER_WIDTH (64)
136
- #endif
137
- #else /* Set to default */
138
- #define UNITY_POINTER_WIDTH UNITY_LONG_WIDTH
139
- #endif /* UINTPTR_MAX */
140
- #endif
141
-
142
- /*-------------------------------------------------------
143
- * Int Support (Define types based on detected sizes)
144
- *-------------------------------------------------------*/
145
-
146
- #if (UNITY_INT_WIDTH == 32)
147
- typedef unsigned char UNITY_UINT8;
148
- typedef unsigned short UNITY_UINT16;
149
- typedef unsigned int UNITY_UINT32;
150
- typedef signed char UNITY_INT8;
151
- typedef signed short UNITY_INT16;
152
- typedef signed int UNITY_INT32;
153
- #elif (UNITY_INT_WIDTH == 16)
154
- typedef unsigned char UNITY_UINT8;
155
- typedef unsigned int UNITY_UINT16;
156
- typedef unsigned long UNITY_UINT32;
157
- typedef signed char UNITY_INT8;
158
- typedef signed int UNITY_INT16;
159
- typedef signed long UNITY_INT32;
160
- #else
161
- #error Invalid UNITY_INT_WIDTH specified! (16 or 32 are supported)
162
- #endif
163
-
164
- /*-------------------------------------------------------
165
- * 64-bit Support
166
- *-------------------------------------------------------*/
167
-
168
- /* Auto-detect 64 Bit Support */
169
- #ifndef UNITY_SUPPORT_64
170
- #if UNITY_LONG_WIDTH == 64 || UNITY_POINTER_WIDTH == 64
171
- #define UNITY_SUPPORT_64
172
- #endif
173
- #endif
174
-
175
- /* 64-Bit Support Dependent Configuration */
176
- #ifndef UNITY_SUPPORT_64
177
- /* No 64-bit Support */
178
- typedef UNITY_UINT32 UNITY_UINT;
179
- typedef UNITY_INT32 UNITY_INT;
180
- #define UNITY_MAX_NIBBLES (8) /* Maximum number of nibbles in a UNITY_(U)INT */
181
- #else
182
- /* 64-bit Support */
183
- #if (UNITY_LONG_WIDTH == 32)
184
- typedef unsigned long long UNITY_UINT64;
185
- typedef signed long long UNITY_INT64;
186
- #elif (UNITY_LONG_WIDTH == 64)
187
- typedef unsigned long UNITY_UINT64;
188
- typedef signed long UNITY_INT64;
189
- #else
190
- #error Invalid UNITY_LONG_WIDTH specified! (32 or 64 are supported)
191
- #endif
192
- typedef UNITY_UINT64 UNITY_UINT;
193
- typedef UNITY_INT64 UNITY_INT;
194
- #define UNITY_MAX_NIBBLES (16) /* Maximum number of nibbles in a UNITY_(U)INT */
195
- #endif
196
-
197
- /*-------------------------------------------------------
198
- * Pointer Support
199
- *-------------------------------------------------------*/
200
-
201
- #if (UNITY_POINTER_WIDTH == 32)
202
- #define UNITY_PTR_TO_INT UNITY_INT32
203
- #define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX32
204
- #elif (UNITY_POINTER_WIDTH == 64)
205
- #define UNITY_PTR_TO_INT UNITY_INT64
206
- #define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX64
207
- #elif (UNITY_POINTER_WIDTH == 16)
208
- #define UNITY_PTR_TO_INT UNITY_INT16
209
- #define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX16
210
- #else
211
- #error Invalid UNITY_POINTER_WIDTH specified! (16, 32 or 64 are supported)
212
- #endif
213
-
214
- #ifndef UNITY_PTR_ATTRIBUTE
215
- #define UNITY_PTR_ATTRIBUTE
216
- #endif
217
-
218
- #ifndef UNITY_INTERNAL_PTR
219
- #define UNITY_INTERNAL_PTR UNITY_PTR_ATTRIBUTE const void*
220
- #endif
221
-
222
- /* optionally define UNITY_COMPARE_PTRS_ON_ZERO_ARRAY */
223
-
224
- /*-------------------------------------------------------
225
- * Float Support
226
- *-------------------------------------------------------*/
227
-
228
- #ifdef UNITY_EXCLUDE_FLOAT
229
-
230
- /* No Floating Point Support */
231
- #ifndef UNITY_EXCLUDE_DOUBLE
232
- #define UNITY_EXCLUDE_DOUBLE /* Remove double when excluding float support */
233
- #endif
234
- #ifndef UNITY_EXCLUDE_FLOAT_PRINT
235
- #define UNITY_EXCLUDE_FLOAT_PRINT
236
- #endif
237
-
238
- #else
239
-
240
- /* Floating Point Support */
241
- #ifndef UNITY_FLOAT_PRECISION
242
- #define UNITY_FLOAT_PRECISION (0.00001f)
243
- #endif
244
- #ifndef UNITY_FLOAT_TYPE
245
- #define UNITY_FLOAT_TYPE float
246
- #endif
247
- typedef UNITY_FLOAT_TYPE UNITY_FLOAT;
248
-
249
- /* isinf & isnan macros should be provided by math.h */
250
- #ifndef isinf
251
- /* The value of Inf - Inf is NaN */
252
- #define isinf(n) (isnan((n) - (n)) && !isnan(n))
253
- #endif
254
-
255
- #ifndef isnan
256
- /* NaN is the only floating point value that does NOT equal itself.
257
- * Therefore if n != n, then it is NaN. */
258
- #define isnan(n) ((n != n) ? 1 : 0)
259
- #endif
260
-
261
- #endif
262
-
263
- /*-------------------------------------------------------
264
- * Double Float Support
265
- *-------------------------------------------------------*/
266
-
267
- /* unlike float, we DON'T include by default */
268
- #if defined(UNITY_EXCLUDE_DOUBLE) || !defined(UNITY_INCLUDE_DOUBLE)
269
-
270
- /* No Floating Point Support */
271
- #ifndef UNITY_EXCLUDE_DOUBLE
272
- #define UNITY_EXCLUDE_DOUBLE
273
- #else
274
- #undef UNITY_INCLUDE_DOUBLE
275
- #endif
276
-
277
- #ifndef UNITY_EXCLUDE_FLOAT
278
- #ifndef UNITY_DOUBLE_TYPE
279
- #define UNITY_DOUBLE_TYPE double
280
- #endif
281
- typedef UNITY_FLOAT UNITY_DOUBLE;
282
- /* For parameter in UnityPrintFloat(UNITY_DOUBLE), which aliases to double or float */
283
- #endif
284
-
285
- #else
286
-
287
- /* Double Floating Point Support */
288
- #ifndef UNITY_DOUBLE_PRECISION
289
- #define UNITY_DOUBLE_PRECISION (1e-12)
290
- #endif
291
-
292
- #ifndef UNITY_DOUBLE_TYPE
293
- #define UNITY_DOUBLE_TYPE double
294
- #endif
295
- typedef UNITY_DOUBLE_TYPE UNITY_DOUBLE;
296
-
297
- #endif
298
-
299
- /*-------------------------------------------------------
300
- * Output Method: stdout (DEFAULT)
301
- *-------------------------------------------------------*/
302
- #ifndef UNITY_OUTPUT_CHAR
303
- /* Default to using putchar, which is defined in stdio.h */
304
- #include <stdio.h>
305
- #define UNITY_OUTPUT_CHAR(a) (void)putchar(a)
306
- #else
307
- /* If defined as something else, make sure we declare it here so it's ready for use */
308
- #ifdef UNITY_OUTPUT_CHAR_HEADER_DECLARATION
309
- extern void UNITY_OUTPUT_CHAR_HEADER_DECLARATION;
310
- #endif
311
- #endif
312
-
313
- #ifndef UNITY_OUTPUT_FLUSH
314
- #ifdef UNITY_USE_FLUSH_STDOUT
315
- /* We want to use the stdout flush utility */
316
- #include <stdio.h>
317
- #define UNITY_OUTPUT_FLUSH() (void)fflush(stdout)
318
- #else
319
- /* We've specified nothing, therefore flush should just be ignored */
320
- #define UNITY_OUTPUT_FLUSH() (void)0
321
- #endif
322
- #else
323
- /* If defined as something else, make sure we declare it here so it's ready for use */
324
- #ifdef UNITY_OUTPUT_FLUSH_HEADER_DECLARATION
325
- extern void UNITY_OUTPUT_FLUSH_HEADER_DECLARATION;
326
- #endif
327
- #endif
328
-
329
- #ifndef UNITY_OUTPUT_FLUSH
330
- #define UNITY_FLUSH_CALL()
331
- #else
332
- #define UNITY_FLUSH_CALL() UNITY_OUTPUT_FLUSH()
333
- #endif
334
-
335
- #ifndef UNITY_PRINT_EOL
336
- #define UNITY_PRINT_EOL() UNITY_OUTPUT_CHAR('\n')
337
- #endif
338
-
339
- #ifndef UNITY_OUTPUT_START
340
- #define UNITY_OUTPUT_START()
341
- #endif
342
-
343
- #ifndef UNITY_OUTPUT_COMPLETE
344
- #define UNITY_OUTPUT_COMPLETE()
345
- #endif
346
-
347
- #ifdef UNITY_INCLUDE_EXEC_TIME
348
- #if !defined(UNITY_EXEC_TIME_START) && \
349
- !defined(UNITY_EXEC_TIME_STOP) && \
350
- !defined(UNITY_PRINT_EXEC_TIME) && \
351
- !defined(UNITY_TIME_TYPE)
352
- /* If none any of these macros are defined then try to provide a default implementation */
353
-
354
- #if defined(UNITY_CLOCK_MS)
355
- /* This is a simple way to get a default implementation on platforms that support getting a millisecond counter */
356
- #define UNITY_TIME_TYPE UNITY_UINT
357
- #define UNITY_EXEC_TIME_START() Unity.CurrentTestStartTime = UNITY_CLOCK_MS()
358
- #define UNITY_EXEC_TIME_STOP() Unity.CurrentTestStopTime = UNITY_CLOCK_MS()
359
- #define UNITY_PRINT_EXEC_TIME() { \
360
- UNITY_UINT execTimeMs = (Unity.CurrentTestStopTime - Unity.CurrentTestStartTime); \
361
- UnityPrint(" ("); \
362
- UnityPrintNumberUnsigned(execTimeMs); \
363
- UnityPrint(" ms)"); \
364
- }
365
- #elif defined(_WIN32)
366
- #include <time.h>
367
- #define UNITY_TIME_TYPE clock_t
368
- #define UNITY_GET_TIME(t) t = (clock_t)((clock() * 1000) / CLOCKS_PER_SEC)
369
- #define UNITY_EXEC_TIME_START() UNITY_GET_TIME(Unity.CurrentTestStartTime)
370
- #define UNITY_EXEC_TIME_STOP() UNITY_GET_TIME(Unity.CurrentTestStopTime)
371
- #define UNITY_PRINT_EXEC_TIME() { \
372
- UNITY_UINT execTimeMs = (Unity.CurrentTestStopTime - Unity.CurrentTestStartTime); \
373
- UnityPrint(" ("); \
374
- UnityPrintNumberUnsigned(execTimeMs); \
375
- UnityPrint(" ms)"); \
376
- }
377
- #elif defined(__unix__) || defined(__APPLE__)
378
- #include <time.h>
379
- #define UNITY_TIME_TYPE struct timespec
380
- #define UNITY_GET_TIME(t) clock_gettime(CLOCK_MONOTONIC, &t)
381
- #define UNITY_EXEC_TIME_START() UNITY_GET_TIME(Unity.CurrentTestStartTime)
382
- #define UNITY_EXEC_TIME_STOP() UNITY_GET_TIME(Unity.CurrentTestStopTime)
383
- #define UNITY_PRINT_EXEC_TIME() { \
384
- UNITY_UINT execTimeMs = ((Unity.CurrentTestStopTime.tv_sec - Unity.CurrentTestStartTime.tv_sec) * 1000L); \
385
- execTimeMs += ((Unity.CurrentTestStopTime.tv_nsec - Unity.CurrentTestStartTime.tv_nsec) / 1000000L); \
386
- UnityPrint(" ("); \
387
- UnityPrintNumberUnsigned(execTimeMs); \
388
- UnityPrint(" ms)"); \
389
- }
390
- #endif
391
- #endif
392
- #endif
393
-
394
- #ifndef UNITY_EXEC_TIME_START
395
- #define UNITY_EXEC_TIME_START() do { /* nothing*/ } while (0)
396
- #endif
397
-
398
- #ifndef UNITY_EXEC_TIME_STOP
399
- #define UNITY_EXEC_TIME_STOP() do { /* nothing*/ } while (0)
400
- #endif
401
-
402
- #ifndef UNITY_TIME_TYPE
403
- #define UNITY_TIME_TYPE UNITY_UINT
404
- #endif
405
-
406
- #ifndef UNITY_PRINT_EXEC_TIME
407
- #define UNITY_PRINT_EXEC_TIME() do { /* nothing*/ } while (0)
408
- #endif
409
-
410
- /*-------------------------------------------------------
411
- * Footprint
412
- *-------------------------------------------------------*/
413
-
414
- #ifndef UNITY_LINE_TYPE
415
- #define UNITY_LINE_TYPE UNITY_UINT
416
- #endif
417
-
418
- #ifndef UNITY_COUNTER_TYPE
419
- #define UNITY_COUNTER_TYPE UNITY_UINT
420
- #endif
421
-
422
- /*-------------------------------------------------------
423
- * Internal Structs Needed
424
- *-------------------------------------------------------*/
425
-
426
- typedef void (*UnityTestFunction)(void);
427
-
428
- #define UNITY_DISPLAY_RANGE_INT (0x10)
429
- #define UNITY_DISPLAY_RANGE_UINT (0x20)
430
- #define UNITY_DISPLAY_RANGE_HEX (0x40)
431
- #define UNITY_DISPLAY_RANGE_CHAR (0x80)
432
-
433
- typedef enum
434
- {
435
- UNITY_DISPLAY_STYLE_INT = (UNITY_INT_WIDTH / 8) + UNITY_DISPLAY_RANGE_INT,
436
- UNITY_DISPLAY_STYLE_INT8 = 1 + UNITY_DISPLAY_RANGE_INT,
437
- UNITY_DISPLAY_STYLE_INT16 = 2 + UNITY_DISPLAY_RANGE_INT,
438
- UNITY_DISPLAY_STYLE_INT32 = 4 + UNITY_DISPLAY_RANGE_INT,
439
- #ifdef UNITY_SUPPORT_64
440
- UNITY_DISPLAY_STYLE_INT64 = 8 + UNITY_DISPLAY_RANGE_INT,
441
- #endif
442
-
443
- UNITY_DISPLAY_STYLE_UINT = (UNITY_INT_WIDTH / 8) + UNITY_DISPLAY_RANGE_UINT,
444
- UNITY_DISPLAY_STYLE_UINT8 = 1 + UNITY_DISPLAY_RANGE_UINT,
445
- UNITY_DISPLAY_STYLE_UINT16 = 2 + UNITY_DISPLAY_RANGE_UINT,
446
- UNITY_DISPLAY_STYLE_UINT32 = 4 + UNITY_DISPLAY_RANGE_UINT,
447
- #ifdef UNITY_SUPPORT_64
448
- UNITY_DISPLAY_STYLE_UINT64 = 8 + UNITY_DISPLAY_RANGE_UINT,
449
- #endif
450
-
451
- UNITY_DISPLAY_STYLE_HEX8 = 1 + UNITY_DISPLAY_RANGE_HEX,
452
- UNITY_DISPLAY_STYLE_HEX16 = 2 + UNITY_DISPLAY_RANGE_HEX,
453
- UNITY_DISPLAY_STYLE_HEX32 = 4 + UNITY_DISPLAY_RANGE_HEX,
454
- #ifdef UNITY_SUPPORT_64
455
- UNITY_DISPLAY_STYLE_HEX64 = 8 + UNITY_DISPLAY_RANGE_HEX,
456
- #endif
457
-
458
- UNITY_DISPLAY_STYLE_CHAR = 1 + UNITY_DISPLAY_RANGE_CHAR + UNITY_DISPLAY_RANGE_INT,
459
-
460
- UNITY_DISPLAY_STYLE_UNKNOWN
461
- } UNITY_DISPLAY_STYLE_T;
462
-
463
- typedef enum
464
- {
465
- UNITY_WITHIN = 0x0,
466
- UNITY_EQUAL_TO = 0x1,
467
- UNITY_GREATER_THAN = 0x2,
468
- UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO,
469
- UNITY_SMALLER_THAN = 0x4,
470
- UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO,
471
- UNITY_NOT_EQUAL = 0x0,
472
- UNITY_UNKNOWN
473
- } UNITY_COMPARISON_T;
474
-
475
- #ifndef UNITY_EXCLUDE_FLOAT
476
- typedef enum UNITY_FLOAT_TRAIT
477
- {
478
- UNITY_FLOAT_IS_NOT_INF = 0,
479
- UNITY_FLOAT_IS_INF,
480
- UNITY_FLOAT_IS_NOT_NEG_INF,
481
- UNITY_FLOAT_IS_NEG_INF,
482
- UNITY_FLOAT_IS_NOT_NAN,
483
- UNITY_FLOAT_IS_NAN,
484
- UNITY_FLOAT_IS_NOT_DET,
485
- UNITY_FLOAT_IS_DET,
486
- UNITY_FLOAT_INVALID_TRAIT
487
- } UNITY_FLOAT_TRAIT_T;
488
- #endif
489
-
490
- typedef enum
491
- {
492
- UNITY_ARRAY_TO_VAL = 0,
493
- UNITY_ARRAY_TO_ARRAY,
494
- UNITY_ARRAY_UNKNOWN
495
- } UNITY_FLAGS_T;
496
-
497
- struct UNITY_STORAGE_T
498
- {
499
- const char* TestFile;
500
- const char* CurrentTestName;
501
- #ifndef UNITY_EXCLUDE_DETAILS
502
- const char* CurrentDetail1;
503
- const char* CurrentDetail2;
504
- #endif
505
- UNITY_LINE_TYPE CurrentTestLineNumber;
506
- UNITY_COUNTER_TYPE NumberOfTests;
507
- UNITY_COUNTER_TYPE TestFailures;
508
- UNITY_COUNTER_TYPE TestIgnores;
509
- UNITY_COUNTER_TYPE CurrentTestFailed;
510
- UNITY_COUNTER_TYPE CurrentTestIgnored;
511
- #ifdef UNITY_INCLUDE_EXEC_TIME
512
- UNITY_TIME_TYPE CurrentTestStartTime;
513
- UNITY_TIME_TYPE CurrentTestStopTime;
514
- #endif
515
- #ifndef UNITY_EXCLUDE_SETJMP_H
516
- jmp_buf AbortFrame;
517
- #endif
518
- };
519
-
520
- extern struct UNITY_STORAGE_T Unity;
521
-
522
- /*-------------------------------------------------------
523
- * Test Suite Management
524
- *-------------------------------------------------------*/
525
-
526
- void UnityBegin(const char* filename);
527
- int UnityEnd(void);
528
- void UnitySetTestFile(const char* filename);
529
- void UnityConcludeTest(void);
530
-
531
- #ifndef RUN_TEST
532
- void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, const int FuncLineNum);
533
- #else
534
- #define UNITY_SKIP_DEFAULT_RUNNER
535
- #endif
536
-
537
- /*-------------------------------------------------------
538
- * Details Support
539
- *-------------------------------------------------------*/
540
-
541
- #ifdef UNITY_EXCLUDE_DETAILS
542
- #define UNITY_CLR_DETAILS()
543
- #define UNITY_SET_DETAIL(d1)
544
- #define UNITY_SET_DETAILS(d1,d2)
545
- #else
546
- #define UNITY_CLR_DETAILS() do { Unity.CurrentDetail1 = 0; Unity.CurrentDetail2 = 0; } while (0)
547
- #define UNITY_SET_DETAIL(d1) do { Unity.CurrentDetail1 = (d1); Unity.CurrentDetail2 = 0; } while (0)
548
- #define UNITY_SET_DETAILS(d1,d2) do { Unity.CurrentDetail1 = (d1); Unity.CurrentDetail2 = (d2); } while (0)
549
-
550
- #ifndef UNITY_DETAIL1_NAME
551
- #define UNITY_DETAIL1_NAME "Function"
552
- #endif
553
-
554
- #ifndef UNITY_DETAIL2_NAME
555
- #define UNITY_DETAIL2_NAME "Argument"
556
- #endif
557
- #endif
558
-
559
- #ifdef UNITY_PRINT_TEST_CONTEXT
560
- void UNITY_PRINT_TEST_CONTEXT(void);
561
- #endif
562
-
563
- /*-------------------------------------------------------
564
- * Test Output
565
- *-------------------------------------------------------*/
566
-
567
- void UnityPrint(const char* string);
568
-
569
- #ifdef UNITY_INCLUDE_PRINT_FORMATTED
570
- void UnityPrintF(const UNITY_LINE_TYPE line, const char* format, ...);
571
- #endif
572
-
573
- void UnityPrintLen(const char* string, const UNITY_UINT32 length);
574
- void UnityPrintMask(const UNITY_UINT mask, const UNITY_UINT number);
575
- void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY_STYLE_T style);
576
- void UnityPrintNumber(const UNITY_INT number_to_print);
577
- void UnityPrintNumberUnsigned(const UNITY_UINT number);
578
- void UnityPrintNumberHex(const UNITY_UINT number, const char nibbles_to_print);
579
-
580
- #ifndef UNITY_EXCLUDE_FLOAT_PRINT
581
- void UnityPrintFloat(const UNITY_DOUBLE input_number);
582
- #endif
583
-
584
- /*-------------------------------------------------------
585
- * Test Assertion Functions
586
- *-------------------------------------------------------
587
- * Use the macros below this section instead of calling
588
- * these directly. The macros have a consistent naming
589
- * convention and will pull in file and line information
590
- * for you. */
591
-
592
- void UnityAssertEqualNumber(const UNITY_INT expected,
593
- const UNITY_INT actual,
594
- const char* msg,
595
- const UNITY_LINE_TYPE lineNumber,
596
- const UNITY_DISPLAY_STYLE_T style);
597
-
598
- void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold,
599
- const UNITY_INT actual,
600
- const UNITY_COMPARISON_T compare,
601
- const char *msg,
602
- const UNITY_LINE_TYPE lineNumber,
603
- const UNITY_DISPLAY_STYLE_T style);
604
-
605
- void UnityAssertEqualIntArray(UNITY_INTERNAL_PTR expected,
606
- UNITY_INTERNAL_PTR actual,
607
- const UNITY_UINT32 num_elements,
608
- const char* msg,
609
- const UNITY_LINE_TYPE lineNumber,
610
- const UNITY_DISPLAY_STYLE_T style,
611
- const UNITY_FLAGS_T flags);
612
-
613
- void UnityAssertBits(const UNITY_INT mask,
614
- const UNITY_INT expected,
615
- const UNITY_INT actual,
616
- const char* msg,
617
- const UNITY_LINE_TYPE lineNumber);
618
-
619
- void UnityAssertEqualString(const char* expected,
620
- const char* actual,
621
- const char* msg,
622
- const UNITY_LINE_TYPE lineNumber);
623
-
624
- void UnityAssertEqualStringLen(const char* expected,
625
- const char* actual,
626
- const UNITY_UINT32 length,
627
- const char* msg,
628
- const UNITY_LINE_TYPE lineNumber);
629
-
630
- void UnityAssertEqualStringArray( UNITY_INTERNAL_PTR expected,
631
- const char** actual,
632
- const UNITY_UINT32 num_elements,
633
- const char* msg,
634
- const UNITY_LINE_TYPE lineNumber,
635
- const UNITY_FLAGS_T flags);
636
-
637
- void UnityAssertEqualMemory( UNITY_INTERNAL_PTR expected,
638
- UNITY_INTERNAL_PTR actual,
639
- const UNITY_UINT32 length,
640
- const UNITY_UINT32 num_elements,
641
- const char* msg,
642
- const UNITY_LINE_TYPE lineNumber,
643
- const UNITY_FLAGS_T flags);
644
-
645
- void UnityAssertNumbersWithin(const UNITY_UINT delta,
646
- const UNITY_INT expected,
647
- const UNITY_INT actual,
648
- const char* msg,
649
- const UNITY_LINE_TYPE lineNumber,
650
- const UNITY_DISPLAY_STYLE_T style);
651
-
652
- void UnityAssertNumbersArrayWithin(const UNITY_UINT delta,
653
- UNITY_INTERNAL_PTR expected,
654
- UNITY_INTERNAL_PTR actual,
655
- const UNITY_UINT32 num_elements,
656
- const char* msg,
657
- const UNITY_LINE_TYPE lineNumber,
658
- const UNITY_DISPLAY_STYLE_T style,
659
- const UNITY_FLAGS_T flags);
660
-
661
- #ifndef UNITY_EXCLUDE_SETJMP_H
662
- UNITY_NORETURN void UnityFail(const char* message, const UNITY_LINE_TYPE line);
663
- UNITY_NORETURN void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
664
- #else
665
- void UnityFail(const char* message, const UNITY_LINE_TYPE line);
666
- void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
667
- #endif
668
-
669
- void UnityMessage(const char* message, const UNITY_LINE_TYPE line);
670
-
671
- #ifndef UNITY_EXCLUDE_FLOAT
672
- void UnityAssertFloatsWithin(const UNITY_FLOAT delta,
673
- const UNITY_FLOAT expected,
674
- const UNITY_FLOAT actual,
675
- const char* msg,
676
- const UNITY_LINE_TYPE lineNumber);
677
-
678
- void UnityAssertFloatsNotWithin(const UNITY_FLOAT delta,
679
- const UNITY_FLOAT expected,
680
- const UNITY_FLOAT actual,
681
- const char* msg,
682
- const UNITY_LINE_TYPE lineNumber);
683
-
684
- void UnityAssertGreaterOrLessFloat(const UNITY_FLOAT threshold,
685
- const UNITY_FLOAT actual,
686
- const UNITY_COMPARISON_T compare,
687
- const char* msg,
688
- const UNITY_LINE_TYPE linenumber);
689
-
690
- void UnityAssertWithinFloatArray(const UNITY_FLOAT delta,
691
- UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* expected,
692
- UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* actual,
693
- const UNITY_UINT32 num_elements,
694
- const char* msg,
695
- const UNITY_LINE_TYPE lineNumber,
696
- const UNITY_FLAGS_T flags);
697
-
698
- void UnityAssertFloatSpecial(const UNITY_FLOAT actual,
699
- const char* msg,
700
- const UNITY_LINE_TYPE lineNumber,
701
- const UNITY_FLOAT_TRAIT_T style);
702
- #endif
703
-
704
- #ifndef UNITY_EXCLUDE_DOUBLE
705
- void UnityAssertDoublesWithin(const UNITY_DOUBLE delta,
706
- const UNITY_DOUBLE expected,
707
- const UNITY_DOUBLE actual,
708
- const char* msg,
709
- const UNITY_LINE_TYPE lineNumber);
710
-
711
- void UnityAssertDoublesNotWithin(const UNITY_DOUBLE delta,
712
- const UNITY_DOUBLE expected,
713
- const UNITY_DOUBLE actual,
714
- const char* msg,
715
- const UNITY_LINE_TYPE lineNumber);
716
-
717
- void UnityAssertGreaterOrLessDouble(const UNITY_DOUBLE threshold,
718
- const UNITY_DOUBLE actual,
719
- const UNITY_COMPARISON_T compare,
720
- const char* msg,
721
- const UNITY_LINE_TYPE linenumber);
722
-
723
- void UnityAssertWithinDoubleArray(const UNITY_DOUBLE delta,
724
- UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE* expected,
725
- UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE* actual,
726
- const UNITY_UINT32 num_elements,
727
- const char* msg,
728
- const UNITY_LINE_TYPE lineNumber,
729
- const UNITY_FLAGS_T flags);
730
-
731
- void UnityAssertDoubleSpecial(const UNITY_DOUBLE actual,
732
- const char* msg,
733
- const UNITY_LINE_TYPE lineNumber,
734
- const UNITY_FLOAT_TRAIT_T style);
735
- #endif
736
-
737
- /*-------------------------------------------------------
738
- * Helpers
739
- *-------------------------------------------------------*/
740
-
741
- UNITY_INTERNAL_PTR UnityNumToPtr(const UNITY_INT num, const UNITY_UINT8 size);
742
- #ifndef UNITY_EXCLUDE_FLOAT
743
- UNITY_INTERNAL_PTR UnityFloatToPtr(const float num);
744
- #endif
745
- #ifndef UNITY_EXCLUDE_DOUBLE
746
- UNITY_INTERNAL_PTR UnityDoubleToPtr(const double num);
747
- #endif
748
-
749
- /*-------------------------------------------------------
750
- * Error Strings We Might Need
751
- *-------------------------------------------------------*/
752
-
753
- extern const char UnityStrOk[];
754
- extern const char UnityStrPass[];
755
- extern const char UnityStrFail[];
756
- extern const char UnityStrIgnore[];
757
-
758
- extern const char UnityStrErrFloat[];
759
- extern const char UnityStrErrDouble[];
760
- extern const char UnityStrErr64[];
761
- extern const char UnityStrErrShorthand[];
762
-
763
- /*-------------------------------------------------------
764
- * Test Running Macros
765
- *-------------------------------------------------------*/
766
-
767
- #ifndef UNITY_EXCLUDE_SETJMP_H
768
- #define TEST_PROTECT() (setjmp(Unity.AbortFrame) == 0)
769
- #define TEST_ABORT() longjmp(Unity.AbortFrame, 1)
770
- #else
771
- #define TEST_PROTECT() 1
772
- #define TEST_ABORT() return
773
- #endif
774
-
775
- /* Automatically enable variadic macros support, if it not enabled before */
776
- #ifndef UNITY_SUPPORT_VARIADIC_MACROS
777
- #ifdef __STDC_VERSION__
778
- #if __STDC_VERSION__ >= 199901L
779
- #define UNITY_SUPPORT_VARIADIC_MACROS
780
- #endif
781
- #endif
782
- #endif
783
-
784
- /* This tricky series of macros gives us an optional line argument to treat it as RUN_TEST(func, num=__LINE__) */
785
- #ifndef RUN_TEST
786
- #ifdef UNITY_SUPPORT_VARIADIC_MACROS
787
- #define RUN_TEST(...) RUN_TEST_AT_LINE(__VA_ARGS__, __LINE__, throwaway)
788
- #define RUN_TEST_AT_LINE(func, line, ...) UnityDefaultTestRun(func, #func, line)
789
- #endif
790
- #endif
791
-
792
- /* Enable default macros for masking param tests test cases */
793
- #ifdef UNITY_SUPPORT_TEST_CASES
794
- #ifdef UNITY_SUPPORT_VARIADIC_MACROS
795
- #if !defined(TEST_CASE) && !defined(UNITY_EXCLUDE_TEST_CASE)
796
- #define TEST_CASE(...)
797
- #endif
798
- #if !defined(TEST_RANGE) && !defined(UNITY_EXCLUDE_TEST_RANGE)
799
- #define TEST_RANGE(...)
800
- #endif
801
- #if !defined(TEST_MATRIX) && !defined(UNITY_EXCLUDE_TEST_MATRIX)
802
- #define TEST_MATRIX(...)
803
- #endif
804
- #endif
805
- #endif
806
-
807
- /* If we can't do the tricky version, we'll just have to require them to always include the line number */
808
- #ifndef RUN_TEST
809
- #ifdef CMOCK
810
- #define RUN_TEST(func, num) UnityDefaultTestRun(func, #func, num)
811
- #else
812
- #define RUN_TEST(func) UnityDefaultTestRun(func, #func, __LINE__)
813
- #endif
814
- #endif
815
-
816
- #define TEST_LINE_NUM (Unity.CurrentTestLineNumber)
817
- #define TEST_IS_IGNORED (Unity.CurrentTestIgnored)
818
- #define UNITY_NEW_TEST(a) \
819
- Unity.CurrentTestName = (a); \
820
- Unity.CurrentTestLineNumber = (UNITY_LINE_TYPE)(__LINE__); \
821
- Unity.NumberOfTests++;
822
-
823
- #ifndef UNITY_BEGIN
824
- #define UNITY_BEGIN() UnityBegin(__FILE__)
825
- #endif
826
-
827
- #ifndef UNITY_END
828
- #define UNITY_END() UnityEnd()
829
- #endif
830
-
831
- #ifndef UNITY_SHORTHAND_AS_INT
832
- #ifndef UNITY_SHORTHAND_AS_MEM
833
- #ifndef UNITY_SHORTHAND_AS_NONE
834
- #ifndef UNITY_SHORTHAND_AS_RAW
835
- #define UNITY_SHORTHAND_AS_OLD
836
- #endif
837
- #endif
838
- #endif
839
- #endif
840
-
841
- /*-----------------------------------------------
842
- * Command Line Argument Support
843
- *-----------------------------------------------*/
844
-
845
- #ifdef UNITY_USE_COMMAND_LINE_ARGS
846
- int UnityParseOptions(int argc, char** argv);
847
- int UnityTestMatches(void);
848
- #endif
849
-
850
- /*-------------------------------------------------------
851
- * Basic Fail and Ignore
852
- *-------------------------------------------------------*/
853
-
854
- #define UNITY_TEST_FAIL(line, message) UnityFail( (message), (UNITY_LINE_TYPE)(line))
855
- #define UNITY_TEST_IGNORE(line, message) UnityIgnore( (message), (UNITY_LINE_TYPE)(line))
856
-
857
- /*-------------------------------------------------------
858
- * Test Asserts
859
- *-------------------------------------------------------*/
860
-
861
- #define UNITY_TEST_ASSERT(condition, line, message) do { if (condition) { /* nothing*/ } else { UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), (message)); } } while (0)
862
- #define UNITY_TEST_ASSERT_NULL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) == NULL), (UNITY_LINE_TYPE)(line), (message))
863
- #define UNITY_TEST_ASSERT_NOT_NULL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) != NULL), (UNITY_LINE_TYPE)(line), (message))
864
- #define UNITY_TEST_ASSERT_EMPTY(pointer, line, message) UNITY_TEST_ASSERT(((pointer[0]) == 0), (UNITY_LINE_TYPE)(line), (message))
865
- #define UNITY_TEST_ASSERT_NOT_EMPTY(pointer, line, message) UNITY_TEST_ASSERT(((pointer[0]) != 0), (UNITY_LINE_TYPE)(line), (message))
866
-
867
- #define UNITY_TEST_ASSERT_EQUAL_INT(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
868
- #define UNITY_TEST_ASSERT_EQUAL_INT8(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
869
- #define UNITY_TEST_ASSERT_EQUAL_INT16(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
870
- #define UNITY_TEST_ASSERT_EQUAL_INT32(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
871
- #define UNITY_TEST_ASSERT_EQUAL_UINT(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
872
- #define UNITY_TEST_ASSERT_EQUAL_UINT8(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
873
- #define UNITY_TEST_ASSERT_EQUAL_UINT16(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
874
- #define UNITY_TEST_ASSERT_EQUAL_UINT32(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
875
- #define UNITY_TEST_ASSERT_EQUAL_HEX8(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
876
- #define UNITY_TEST_ASSERT_EQUAL_HEX16(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
877
- #define UNITY_TEST_ASSERT_EQUAL_HEX32(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
878
- #define UNITY_TEST_ASSERT_EQUAL_CHAR(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
879
- #define UNITY_TEST_ASSERT_BITS(mask, expected, actual, line, message) UnityAssertBits((UNITY_INT)(mask), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line))
880
-
881
- #define UNITY_TEST_ASSERT_NOT_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
882
- #define UNITY_TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
883
- #define UNITY_TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
884
- #define UNITY_TEST_ASSERT_NOT_EQUAL_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
885
- #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
886
- #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
887
- #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
888
- #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
889
- #define UNITY_TEST_ASSERT_NOT_EQUAL_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
890
- #define UNITY_TEST_ASSERT_NOT_EQUAL_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
891
- #define UNITY_TEST_ASSERT_NOT_EQUAL_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
892
- #define UNITY_TEST_ASSERT_NOT_EQUAL_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
893
-
894
- #define UNITY_TEST_ASSERT_GREATER_THAN_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
895
- #define UNITY_TEST_ASSERT_GREATER_THAN_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
896
- #define UNITY_TEST_ASSERT_GREATER_THAN_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
897
- #define UNITY_TEST_ASSERT_GREATER_THAN_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
898
- #define UNITY_TEST_ASSERT_GREATER_THAN_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
899
- #define UNITY_TEST_ASSERT_GREATER_THAN_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
900
- #define UNITY_TEST_ASSERT_GREATER_THAN_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
901
- #define UNITY_TEST_ASSERT_GREATER_THAN_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
902
- #define UNITY_TEST_ASSERT_GREATER_THAN_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
903
- #define UNITY_TEST_ASSERT_GREATER_THAN_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
904
- #define UNITY_TEST_ASSERT_GREATER_THAN_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
905
- #define UNITY_TEST_ASSERT_GREATER_THAN_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
906
-
907
- #define UNITY_TEST_ASSERT_SMALLER_THAN_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
908
- #define UNITY_TEST_ASSERT_SMALLER_THAN_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
909
- #define UNITY_TEST_ASSERT_SMALLER_THAN_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
910
- #define UNITY_TEST_ASSERT_SMALLER_THAN_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
911
- #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
912
- #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
913
- #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
914
- #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
915
- #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
916
- #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
917
- #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
918
- #define UNITY_TEST_ASSERT_SMALLER_THAN_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
919
-
920
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
921
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 ) (threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
922
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16) (threshold), (UNITY_INT)(UNITY_INT16) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
923
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32) (threshold), (UNITY_INT)(UNITY_INT32) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
924
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
925
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
926
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
927
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
928
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
929
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
930
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
931
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 ) (threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
932
-
933
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
934
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
935
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
936
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
937
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
938
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
939
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
940
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
941
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
942
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
943
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
944
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
945
-
946
- #define UNITY_TEST_ASSERT_INT_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin( (delta), (UNITY_INT) (expected), (UNITY_INT) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
947
- #define UNITY_TEST_ASSERT_INT8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_INT8 ) (expected), (UNITY_INT)(UNITY_INT8 ) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
948
- #define UNITY_TEST_ASSERT_INT16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_INT16) (expected), (UNITY_INT)(UNITY_INT16) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
949
- #define UNITY_TEST_ASSERT_INT32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_INT32) (expected), (UNITY_INT)(UNITY_INT32) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
950
- #define UNITY_TEST_ASSERT_UINT_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin( (delta), (UNITY_INT) (expected), (UNITY_INT) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
951
- #define UNITY_TEST_ASSERT_UINT8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
952
- #define UNITY_TEST_ASSERT_UINT16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
953
- #define UNITY_TEST_ASSERT_UINT32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
954
- #define UNITY_TEST_ASSERT_HEX8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
955
- #define UNITY_TEST_ASSERT_HEX16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
956
- #define UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
957
- #define UNITY_TEST_ASSERT_CHAR_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_INT8 ) (expected), (UNITY_INT)(UNITY_INT8 ) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
958
-
959
- #define UNITY_TEST_ASSERT_INT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin( (delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT, UNITY_ARRAY_TO_ARRAY)
960
- #define UNITY_TEST_ASSERT_INT8_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8, UNITY_ARRAY_TO_ARRAY)
961
- #define UNITY_TEST_ASSERT_INT16_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT16)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16, UNITY_ARRAY_TO_ARRAY)
962
- #define UNITY_TEST_ASSERT_INT32_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT32)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32, UNITY_ARRAY_TO_ARRAY)
963
- #define UNITY_TEST_ASSERT_UINT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin( (delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT, UNITY_ARRAY_TO_ARRAY)
964
- #define UNITY_TEST_ASSERT_UINT8_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8, UNITY_ARRAY_TO_ARRAY)
965
- #define UNITY_TEST_ASSERT_UINT16_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT16)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16, UNITY_ARRAY_TO_ARRAY)
966
- #define UNITY_TEST_ASSERT_UINT32_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT32)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32, UNITY_ARRAY_TO_ARRAY)
967
- #define UNITY_TEST_ASSERT_HEX8_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8, UNITY_ARRAY_TO_ARRAY)
968
- #define UNITY_TEST_ASSERT_HEX16_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT16)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16, UNITY_ARRAY_TO_ARRAY)
969
- #define UNITY_TEST_ASSERT_HEX32_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT32)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32, UNITY_ARRAY_TO_ARRAY)
970
- #define UNITY_TEST_ASSERT_CHAR_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR, UNITY_ARRAY_TO_ARRAY)
971
-
972
-
973
- #define UNITY_TEST_ASSERT_EQUAL_PTR(expected, actual, line, message) UnityAssertEqualNumber((UNITY_PTR_TO_INT)(expected), (UNITY_PTR_TO_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER)
974
- #define UNITY_TEST_ASSERT_EQUAL_STRING(expected, actual, line, message) UnityAssertEqualString((const char*)(expected), (const char*)(actual), (message), (UNITY_LINE_TYPE)(line))
975
- #define UNITY_TEST_ASSERT_EQUAL_STRING_LEN(expected, actual, len, line, message) UnityAssertEqualStringLen((const char*)(expected), (const char*)(actual), (UNITY_UINT32)(len), (message), (UNITY_LINE_TYPE)(line))
976
- #define UNITY_TEST_ASSERT_EQUAL_MEMORY(expected, actual, len, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), 1, (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
977
-
978
- #define UNITY_TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT, UNITY_ARRAY_TO_ARRAY)
979
- #define UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8, UNITY_ARRAY_TO_ARRAY)
980
- #define UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16, UNITY_ARRAY_TO_ARRAY)
981
- #define UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32, UNITY_ARRAY_TO_ARRAY)
982
- #define UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT, UNITY_ARRAY_TO_ARRAY)
983
- #define UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8, UNITY_ARRAY_TO_ARRAY)
984
- #define UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16, UNITY_ARRAY_TO_ARRAY)
985
- #define UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32, UNITY_ARRAY_TO_ARRAY)
986
- #define UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8, UNITY_ARRAY_TO_ARRAY)
987
- #define UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16, UNITY_ARRAY_TO_ARRAY)
988
- #define UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32, UNITY_ARRAY_TO_ARRAY)
989
- #define UNITY_TEST_ASSERT_EQUAL_PTR_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER, UNITY_ARRAY_TO_ARRAY)
990
- #define UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualStringArray((UNITY_INTERNAL_PTR)(expected), (const char**)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
991
- #define UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
992
- #define UNITY_TEST_ASSERT_EQUAL_CHAR_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR, UNITY_ARRAY_TO_ARRAY)
993
-
994
- #define UNITY_TEST_ASSERT_EACH_EQUAL_INT(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT) (expected), (UNITY_INT_WIDTH / 8)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT, UNITY_ARRAY_TO_VAL)
995
- #define UNITY_TEST_ASSERT_EACH_EQUAL_INT8(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8, UNITY_ARRAY_TO_VAL)
996
- #define UNITY_TEST_ASSERT_EACH_EQUAL_INT16(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT16 )(expected), 2), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16, UNITY_ARRAY_TO_VAL)
997
- #define UNITY_TEST_ASSERT_EACH_EQUAL_INT32(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT32 )(expected), 4), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32, UNITY_ARRAY_TO_VAL)
998
- #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT) (expected), (UNITY_INT_WIDTH / 8)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT, UNITY_ARRAY_TO_VAL)
999
- #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT8(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8, UNITY_ARRAY_TO_VAL)
1000
- #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT16(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT16)(expected), 2), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16, UNITY_ARRAY_TO_VAL)
1001
- #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT32(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT32)(expected), 4), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32, UNITY_ARRAY_TO_VAL)
1002
- #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX8(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8, UNITY_ARRAY_TO_VAL)
1003
- #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX16(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT16 )(expected), 2), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16, UNITY_ARRAY_TO_VAL)
1004
- #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX32(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT32 )(expected), 4), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32, UNITY_ARRAY_TO_VAL)
1005
- #define UNITY_TEST_ASSERT_EACH_EQUAL_PTR(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_PTR_TO_INT) (expected), (UNITY_POINTER_WIDTH / 8)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER, UNITY_ARRAY_TO_VAL)
1006
- #define UNITY_TEST_ASSERT_EACH_EQUAL_STRING(expected, actual, num_elements, line, message) UnityAssertEqualStringArray((UNITY_INTERNAL_PTR)(expected), (const char**)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
1007
- #define UNITY_TEST_ASSERT_EACH_EQUAL_MEMORY(expected, actual, len, num_elements, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
1008
- #define UNITY_TEST_ASSERT_EACH_EQUAL_CHAR(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR, UNITY_ARRAY_TO_VAL)
1009
-
1010
- #ifdef UNITY_SUPPORT_64
1011
- #define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1012
- #define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1013
- #define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1014
- #define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_ARRAY)
1015
- #define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_ARRAY)
1016
- #define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_ARRAY)
1017
- #define UNITY_TEST_ASSERT_EACH_EQUAL_INT64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_VAL)
1018
- #define UNITY_TEST_ASSERT_EACH_EQUAL_UINT64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_VAL)
1019
- #define UNITY_TEST_ASSERT_EACH_EQUAL_HEX64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_VAL)
1020
- #define UNITY_TEST_ASSERT_INT64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1021
- #define UNITY_TEST_ASSERT_UINT64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1022
- #define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1023
- #define UNITY_TEST_ASSERT_NOT_EQUAL_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1024
- #define UNITY_TEST_ASSERT_NOT_EQUAL_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1025
- #define UNITY_TEST_ASSERT_NOT_EQUAL_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1026
- #define UNITY_TEST_ASSERT_GREATER_THAN_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1027
- #define UNITY_TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1028
- #define UNITY_TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1029
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1030
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1031
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1032
- #define UNITY_TEST_ASSERT_SMALLER_THAN_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1033
- #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1034
- #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1035
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
1036
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
1037
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
1038
- #define UNITY_TEST_ASSERT_INT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT64)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_ARRAY)
1039
- #define UNITY_TEST_ASSERT_UINT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT64)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_ARRAY)
1040
- #define UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT64)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_ARRAY)
1041
- #else
1042
- #define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1043
- #define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1044
- #define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1045
- #define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1046
- #define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1047
- #define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1048
- #define UNITY_TEST_ASSERT_INT64_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1049
- #define UNITY_TEST_ASSERT_UINT64_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1050
- #define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1051
- #define UNITY_TEST_ASSERT_GREATER_THAN_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1052
- #define UNITY_TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1053
- #define UNITY_TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1054
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1055
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1056
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1057
- #define UNITY_TEST_ASSERT_SMALLER_THAN_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1058
- #define UNITY_TEST_ASSERT_SMALLER_THAN_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1059
- #define UNITY_TEST_ASSERT_SMALLER_THAN_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1060
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1061
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1062
- #define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1063
- #define UNITY_TEST_ASSERT_INT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1064
- #define UNITY_TEST_ASSERT_UINT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1065
- #define UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
1066
- #endif
1067
-
1068
- #ifdef UNITY_EXCLUDE_FLOAT
1069
- #define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1070
- #define UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1071
- #define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1072
- #define UNITY_TEST_ASSERT_NOT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1073
- #define UNITY_TEST_ASSERT_FLOAT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1074
- #define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1075
- #define UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1076
- #define UNITY_TEST_ASSERT_GREATER_THAN_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1077
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1078
- #define UNITY_TEST_ASSERT_LESS_THAN_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1079
- #define UNITY_TEST_ASSERT_LESS_OR_EQUAL_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1080
- #define UNITY_TEST_ASSERT_FLOAT_IS_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1081
- #define UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1082
- #define UNITY_TEST_ASSERT_FLOAT_IS_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1083
- #define UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1084
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1085
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1086
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1087
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
1088
- #else
1089
- #define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message) UnityAssertFloatsWithin((UNITY_FLOAT)(delta), (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line))
1090
- #define UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN(delta, expected, actual, line, message) UnityAssertFloatsNotWithin((UNITY_FLOAT)(delta), (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line))
1091
- #define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_ASSERT_FLOAT_WITHIN((UNITY_FLOAT)(expected) * (UNITY_FLOAT)UNITY_FLOAT_PRECISION, (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (UNITY_LINE_TYPE)(line), (message))
1092
- #define UNITY_TEST_ASSERT_NOT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN((UNITY_FLOAT)(expected) * (UNITY_FLOAT)UNITY_FLOAT_PRECISION, (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (UNITY_LINE_TYPE)(line), (message))
1093
- #define UNITY_TEST_ASSERT_FLOAT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertWithinFloatArray((UNITY_FLOAT)(delta), (const UNITY_FLOAT*)(expected), (const UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
1094
- #define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message) UnityAssertWithinFloatArray((UNITY_FLOAT)0, (const UNITY_FLOAT*)(expected), (const UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
1095
- #define UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements, line, message) UnityAssertWithinFloatArray((UNITY_FLOAT)0, UnityFloatToPtr(expected), (const UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
1096
- #define UNITY_TEST_ASSERT_GREATER_THAN_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line))
1097
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
1098
- #define UNITY_TEST_ASSERT_LESS_THAN_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line))
1099
- #define UNITY_TEST_ASSERT_LESS_OR_EQUAL_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
1100
- #define UNITY_TEST_ASSERT_FLOAT_IS_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_INF)
1101
- #define UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NEG_INF)
1102
- #define UNITY_TEST_ASSERT_FLOAT_IS_NAN(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NAN)
1103
- #define UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_DET)
1104
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_INF)
1105
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NEG_INF)
1106
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NAN)
1107
- #define UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_DET)
1108
- #endif
1109
-
1110
- #ifdef UNITY_EXCLUDE_DOUBLE
1111
- #define UNITY_TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1112
- #define UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1113
- #define UNITY_TEST_ASSERT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1114
- #define UNITY_TEST_ASSERT_NOT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1115
- #define UNITY_TEST_ASSERT_DOUBLE_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1116
- #define UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1117
- #define UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1118
- #define UNITY_TEST_ASSERT_GREATER_THAN_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1119
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1120
- #define UNITY_TEST_ASSERT_LESS_THAN_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1121
- #define UNITY_TEST_ASSERT_LESS_OR_EQUAL_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1122
- #define UNITY_TEST_ASSERT_DOUBLE_IS_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1123
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1124
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1125
- #define UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1126
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1127
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1128
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1129
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
1130
- #else
1131
- #define UNITY_TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual, line, message) UnityAssertDoublesWithin((UNITY_DOUBLE)(delta), (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line))
1132
- #define UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN(delta, expected, actual, line, message) UnityAssertDoublesNotWithin((UNITY_DOUBLE)(delta), (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line))
1133
- #define UNITY_TEST_ASSERT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_ASSERT_DOUBLE_WITHIN((UNITY_DOUBLE)(expected) * (UNITY_DOUBLE)UNITY_DOUBLE_PRECISION, (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (UNITY_LINE_TYPE)(line), (message))
1134
- #define UNITY_TEST_ASSERT_NOT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN((UNITY_DOUBLE)(expected) * (UNITY_DOUBLE)UNITY_DOUBLE_PRECISION, (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (UNITY_LINE_TYPE)(line), (message))
1135
- #define UNITY_TEST_ASSERT_DOUBLE_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertWithinDoubleArray((UNITY_DOUBLE)(delta), (const UNITY_DOUBLE*)(expected), (const UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
1136
- #define UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements, line, message) UnityAssertWithinDoubleArray((UNITY_DOUBLE)0, (const UNITY_DOUBLE*)(expected), (const UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
1137
- #define UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements, line, message) UnityAssertWithinDoubleArray((UNITY_DOUBLE)0, UnityDoubleToPtr(expected), (const UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
1138
- #define UNITY_TEST_ASSERT_GREATER_THAN_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line))
1139
- #define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
1140
- #define UNITY_TEST_ASSERT_LESS_THAN_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line))
1141
- #define UNITY_TEST_ASSERT_LESS_OR_EQUAL_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
1142
- #define UNITY_TEST_ASSERT_DOUBLE_IS_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_INF)
1143
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NEG_INF)
1144
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NAN(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NAN)
1145
- #define UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_DET)
1146
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_INF)
1147
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NEG_INF)
1148
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NAN)
1149
- #define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_DET)
1150
- #endif
1151
-
1152
- /* End of UNITY_INTERNALS_H */
1153
- #endif