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,698 +0,0 @@
1
- /* =========================================================================
2
- Unity - A Test Framework for C
3
- ThrowTheSwitch.org
4
- Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
5
- SPDX-License-Identifier: MIT
6
- ========================================================================= */
7
-
8
- #ifndef UNITY_FRAMEWORK_H
9
- #define UNITY_FRAMEWORK_H
10
- #define UNITY
11
-
12
- #define UNITY_VERSION_MAJOR 2
13
- #define UNITY_VERSION_MINOR 6
14
- #define UNITY_VERSION_BUILD 0
15
- #define UNITY_VERSION ((UNITY_VERSION_MAJOR << 16) | (UNITY_VERSION_MINOR << 8) | UNITY_VERSION_BUILD)
16
-
17
- #ifdef __cplusplus
18
- extern "C"
19
- {
20
- #endif
21
-
22
- #include "unity_internals.h"
23
-
24
- /*-------------------------------------------------------
25
- * Test Setup / Teardown
26
- *-------------------------------------------------------*/
27
-
28
- /* These functions are intended to be called before and after each test.
29
- * If using unity directly, these will need to be provided for each test
30
- * executable built. If you are using the test runner generator and/or
31
- * Ceedling, these are optional. */
32
- void setUp(void);
33
- void tearDown(void);
34
-
35
- /* These functions are intended to be called at the beginning and end of an
36
- * entire test suite. suiteTearDown() is passed the number of tests that
37
- * failed, and its return value becomes the exit code of main(). If using
38
- * Unity directly, you're in charge of calling these if they are desired.
39
- * If using Ceedling or the test runner generator, these will be called
40
- * automatically if they exist. */
41
- void suiteSetUp(void);
42
- int suiteTearDown(int num_failures);
43
-
44
- /*-------------------------------------------------------
45
- * Test Reset and Verify
46
- *-------------------------------------------------------*/
47
-
48
- /* These functions are intended to be called before during tests in order
49
- * to support complex test loops, etc. Both are NOT built into Unity. Instead
50
- * the test runner generator will create them. resetTest will run teardown and
51
- * setup again, verifying any end-of-test needs between. verifyTest will only
52
- * run the verification. */
53
- void resetTest(void);
54
- void verifyTest(void);
55
-
56
- /*-------------------------------------------------------
57
- * Configuration Options
58
- *-------------------------------------------------------
59
- * All options described below should be passed as a compiler flag to all files using Unity. If you must add #defines, place them BEFORE the #include above.
60
-
61
- * Integers/longs/pointers
62
- * - Unity attempts to automatically discover your integer sizes
63
- * - define UNITY_EXCLUDE_STDINT_H to stop attempting to look in <stdint.h>
64
- * - define UNITY_EXCLUDE_LIMITS_H to stop attempting to look in <limits.h>
65
- * - If you cannot use the automatic methods above, you can force Unity by using these options:
66
- * - define UNITY_SUPPORT_64
67
- * - set UNITY_INT_WIDTH
68
- * - set UNITY_LONG_WIDTH
69
- * - set UNITY_POINTER_WIDTH
70
-
71
- * Floats
72
- * - define UNITY_EXCLUDE_FLOAT to disallow floating point comparisons
73
- * - define UNITY_FLOAT_PRECISION to specify the precision to use when doing TEST_ASSERT_EQUAL_FLOAT
74
- * - define UNITY_FLOAT_TYPE to specify doubles instead of single precision floats
75
- * - define UNITY_INCLUDE_DOUBLE to allow double floating point comparisons
76
- * - define UNITY_EXCLUDE_DOUBLE to disallow double floating point comparisons (default)
77
- * - define UNITY_DOUBLE_PRECISION to specify the precision to use when doing TEST_ASSERT_EQUAL_DOUBLE
78
- * - define UNITY_DOUBLE_TYPE to specify something other than double
79
- * - define UNITY_EXCLUDE_FLOAT_PRINT to trim binary size, won't print floating point values in errors
80
-
81
- * Output
82
- * - by default, Unity prints to standard out with putchar. define UNITY_OUTPUT_CHAR(a) with a different function if desired
83
- * - define UNITY_DIFFERENTIATE_FINAL_FAIL to print FAILED (vs. FAIL) at test end summary - for automated search for failure
84
-
85
- * Optimization
86
- * - by default, line numbers are stored in unsigned shorts. Define UNITY_LINE_TYPE with a different type if your files are huge
87
- * - by default, test and failure counters are unsigned shorts. Define UNITY_COUNTER_TYPE with a different type if you want to save space or have more than 65535 Tests.
88
-
89
- * Test Cases
90
- * - define UNITY_SUPPORT_TEST_CASES to include the TEST_CASE macro, though really it's mostly about the runner generator script
91
-
92
- * Parameterized Tests
93
- * - you'll want to create a define of TEST_CASE(...), TEST_RANGE(...) and/or TEST_MATRIX(...) which basically evaluates to nothing
94
-
95
- * Tests with Arguments
96
- * - you'll want to define UNITY_USE_COMMAND_LINE_ARGS if you have the test runner passing arguments to Unity
97
-
98
- *-------------------------------------------------------
99
- * Basic Fail and Ignore
100
- *-------------------------------------------------------*/
101
-
102
- #define TEST_FAIL_MESSAGE(message) UNITY_TEST_FAIL(__LINE__, (message))
103
- #define TEST_FAIL() UNITY_TEST_FAIL(__LINE__, NULL)
104
- #define TEST_IGNORE_MESSAGE(message) UNITY_TEST_IGNORE(__LINE__, (message))
105
- #define TEST_IGNORE() UNITY_TEST_IGNORE(__LINE__, NULL)
106
- #define TEST_MESSAGE(message) UnityMessage((message), __LINE__)
107
- #define TEST_ONLY()
108
- #ifdef UNITY_INCLUDE_PRINT_FORMATTED
109
- #define TEST_PRINTF(message, ...) UnityPrintF(__LINE__, (message), ##__VA_ARGS__)
110
- #endif
111
-
112
- /* It is not necessary for you to call PASS. A PASS condition is assumed if nothing fails.
113
- * This method allows you to abort a test immediately with a PASS state, ignoring the remainder of the test. */
114
- #define TEST_PASS() TEST_ABORT()
115
- #define TEST_PASS_MESSAGE(message) do { UnityMessage((message), __LINE__); TEST_ABORT(); } while (0)
116
-
117
- /*-------------------------------------------------------
118
- * Build Directives
119
- *-------------------------------------------------------
120
-
121
- * These macros do nothing, but they are useful for additional build context.
122
- * Tools (like Ceedling) can scan for these directives and make use of them for
123
- * per-test-executable #include search paths and linking. */
124
-
125
- /* Add source files to a test executable's compilation and linking. Ex: TEST_SOURCE_FILE("sandwiches.c") */
126
- #define TEST_SOURCE_FILE(a)
127
-
128
- /* Customize #include search paths for a test executable's compilation. Ex: TEST_INCLUDE_PATH("src/module_a/inc") */
129
- #define TEST_INCLUDE_PATH(a)
130
-
131
- /*-------------------------------------------------------
132
- * Test Asserts (simple)
133
- *-------------------------------------------------------*/
134
-
135
- /* Boolean */
136
- #define TEST_ASSERT(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expression Evaluated To FALSE")
137
- #define TEST_ASSERT_TRUE(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expected TRUE Was FALSE")
138
- #define TEST_ASSERT_UNLESS(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expression Evaluated To TRUE")
139
- #define TEST_ASSERT_FALSE(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expected FALSE Was TRUE")
140
- #define TEST_ASSERT_NULL(pointer) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, " Expected NULL")
141
- #define TEST_ASSERT_NOT_NULL(pointer) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, " Expected Non-NULL")
142
- #define TEST_ASSERT_EMPTY(pointer) UNITY_TEST_ASSERT_EMPTY( (pointer), __LINE__, " Expected Empty")
143
- #define TEST_ASSERT_NOT_EMPTY(pointer) UNITY_TEST_ASSERT_NOT_EMPTY((pointer), __LINE__, " Expected Non-Empty")
144
-
145
- /* Integers (of all sizes) */
146
- #define TEST_ASSERT_EQUAL_INT(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL)
147
- #define TEST_ASSERT_EQUAL_INT8(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT8((expected), (actual), __LINE__, NULL)
148
- #define TEST_ASSERT_EQUAL_INT16(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT16((expected), (actual), __LINE__, NULL)
149
- #define TEST_ASSERT_EQUAL_INT32(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT32((expected), (actual), __LINE__, NULL)
150
- #define TEST_ASSERT_EQUAL_INT64(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT64((expected), (actual), __LINE__, NULL)
151
- #define TEST_ASSERT_EQUAL_UINT(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT( (expected), (actual), __LINE__, NULL)
152
- #define TEST_ASSERT_EQUAL_UINT8(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT8( (expected), (actual), __LINE__, NULL)
153
- #define TEST_ASSERT_EQUAL_UINT16(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT16( (expected), (actual), __LINE__, NULL)
154
- #define TEST_ASSERT_EQUAL_UINT32(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT32( (expected), (actual), __LINE__, NULL)
155
- #define TEST_ASSERT_EQUAL_UINT64(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT64( (expected), (actual), __LINE__, NULL)
156
- #define TEST_ASSERT_EQUAL_size_t(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT((expected), (actual), __LINE__, NULL)
157
- #define TEST_ASSERT_EQUAL_HEX(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, NULL)
158
- #define TEST_ASSERT_EQUAL_HEX8(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX8( (expected), (actual), __LINE__, NULL)
159
- #define TEST_ASSERT_EQUAL_HEX16(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX16((expected), (actual), __LINE__, NULL)
160
- #define TEST_ASSERT_EQUAL_HEX32(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, NULL)
161
- #define TEST_ASSERT_EQUAL_HEX64(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX64((expected), (actual), __LINE__, NULL)
162
- #define TEST_ASSERT_EQUAL_CHAR(expected, actual) UNITY_TEST_ASSERT_EQUAL_CHAR((expected), (actual), __LINE__, NULL)
163
- #define TEST_ASSERT_BITS(mask, expected, actual) UNITY_TEST_ASSERT_BITS((mask), (expected), (actual), __LINE__, NULL)
164
- #define TEST_ASSERT_BITS_HIGH(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (UNITY_UINT)(-1), (actual), __LINE__, NULL)
165
- #define TEST_ASSERT_BITS_LOW(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (UNITY_UINT)(0), (actual), __LINE__, NULL)
166
- #define TEST_ASSERT_BIT_HIGH(bit, actual) UNITY_TEST_ASSERT_BITS(((UNITY_UINT)1 << (bit)), (UNITY_UINT)(-1), (actual), __LINE__, NULL)
167
- #define TEST_ASSERT_BIT_LOW(bit, actual) UNITY_TEST_ASSERT_BITS(((UNITY_UINT)1 << (bit)), (UNITY_UINT)(0), (actual), __LINE__, NULL)
168
-
169
- /* Integer Not Equal To (of all sizes) */
170
- #define TEST_ASSERT_NOT_EQUAL_INT(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT((threshold), (actual), __LINE__, NULL)
171
- #define TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT8((threshold), (actual), __LINE__, NULL)
172
- #define TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT16((threshold), (actual), __LINE__, NULL)
173
- #define TEST_ASSERT_NOT_EQUAL_INT32(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT32((threshold), (actual), __LINE__, NULL)
174
- #define TEST_ASSERT_NOT_EQUAL_INT64(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_INT64((threshold), (actual), __LINE__, NULL)
175
- #define TEST_ASSERT_NOT_EQUAL_UINT(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_UINT((threshold), (actual), __LINE__, NULL)
176
- #define TEST_ASSERT_NOT_EQUAL_UINT8(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_UINT8((threshold), (actual), __LINE__, NULL)
177
- #define TEST_ASSERT_NOT_EQUAL_UINT16(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_UINT16((threshold), (actual), __LINE__, NULL)
178
- #define TEST_ASSERT_NOT_EQUAL_UINT32(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_UINT32((threshold), (actual), __LINE__, NULL)
179
- #define TEST_ASSERT_NOT_EQUAL_UINT64(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_UINT64((threshold), (actual), __LINE__, NULL)
180
- #define TEST_ASSERT_NOT_EQUAL_size_t(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_UINT((threshold), (actual), __LINE__, NULL)
181
- #define TEST_ASSERT_NOT_EQUAL_HEX8(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_HEX8((threshold), (actual), __LINE__, NULL)
182
- #define TEST_ASSERT_NOT_EQUAL_HEX16(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_HEX16((threshold), (actual), __LINE__, NULL)
183
- #define TEST_ASSERT_NOT_EQUAL_HEX32(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_HEX32((threshold), (actual), __LINE__, NULL)
184
- #define TEST_ASSERT_NOT_EQUAL_HEX64(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_HEX64((threshold), (actual), __LINE__, NULL)
185
- #define TEST_ASSERT_NOT_EQUAL_CHAR(threshold, actual) UNITY_TEST_ASSERT_NOT_EQUAL_CHAR((threshold), (actual), __LINE__, NULL)
186
-
187
- /* Integer Greater Than/ Less Than (of all sizes) */
188
- #define TEST_ASSERT_GREATER_THAN(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, NULL)
189
- #define TEST_ASSERT_GREATER_THAN_INT(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, NULL)
190
- #define TEST_ASSERT_GREATER_THAN_INT8(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT8((threshold), (actual), __LINE__, NULL)
191
- #define TEST_ASSERT_GREATER_THAN_INT16(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT16((threshold), (actual), __LINE__, NULL)
192
- #define TEST_ASSERT_GREATER_THAN_INT32(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT32((threshold), (actual), __LINE__, NULL)
193
- #define TEST_ASSERT_GREATER_THAN_INT64(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_INT64((threshold), (actual), __LINE__, NULL)
194
- #define TEST_ASSERT_GREATER_THAN_UINT(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_UINT((threshold), (actual), __LINE__, NULL)
195
- #define TEST_ASSERT_GREATER_THAN_UINT8(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_UINT8((threshold), (actual), __LINE__, NULL)
196
- #define TEST_ASSERT_GREATER_THAN_UINT16(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_UINT16((threshold), (actual), __LINE__, NULL)
197
- #define TEST_ASSERT_GREATER_THAN_UINT32(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_UINT32((threshold), (actual), __LINE__, NULL)
198
- #define TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_UINT64((threshold), (actual), __LINE__, NULL)
199
- #define TEST_ASSERT_GREATER_THAN_size_t(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_UINT((threshold), (actual), __LINE__, NULL)
200
- #define TEST_ASSERT_GREATER_THAN_HEX8(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_HEX8((threshold), (actual), __LINE__, NULL)
201
- #define TEST_ASSERT_GREATER_THAN_HEX16(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_HEX16((threshold), (actual), __LINE__, NULL)
202
- #define TEST_ASSERT_GREATER_THAN_HEX32(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_HEX32((threshold), (actual), __LINE__, NULL)
203
- #define TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_HEX64((threshold), (actual), __LINE__, NULL)
204
- #define TEST_ASSERT_GREATER_THAN_CHAR(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_CHAR((threshold), (actual), __LINE__, NULL)
205
-
206
- #define TEST_ASSERT_LESS_THAN(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_INT((threshold), (actual), __LINE__, NULL)
207
- #define TEST_ASSERT_LESS_THAN_INT(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_INT((threshold), (actual), __LINE__, NULL)
208
- #define TEST_ASSERT_LESS_THAN_INT8(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_INT8((threshold), (actual), __LINE__, NULL)
209
- #define TEST_ASSERT_LESS_THAN_INT16(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_INT16((threshold), (actual), __LINE__, NULL)
210
- #define TEST_ASSERT_LESS_THAN_INT32(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_INT32((threshold), (actual), __LINE__, NULL)
211
- #define TEST_ASSERT_LESS_THAN_INT64(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_INT64((threshold), (actual), __LINE__, NULL)
212
- #define TEST_ASSERT_LESS_THAN_UINT(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_UINT((threshold), (actual), __LINE__, NULL)
213
- #define TEST_ASSERT_LESS_THAN_UINT8(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_UINT8((threshold), (actual), __LINE__, NULL)
214
- #define TEST_ASSERT_LESS_THAN_UINT16(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_UINT16((threshold), (actual), __LINE__, NULL)
215
- #define TEST_ASSERT_LESS_THAN_UINT32(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_UINT32((threshold), (actual), __LINE__, NULL)
216
- #define TEST_ASSERT_LESS_THAN_UINT64(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_UINT64((threshold), (actual), __LINE__, NULL)
217
- #define TEST_ASSERT_LESS_THAN_size_t(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_UINT((threshold), (actual), __LINE__, NULL)
218
- #define TEST_ASSERT_LESS_THAN_HEX8(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_HEX8((threshold), (actual), __LINE__, NULL)
219
- #define TEST_ASSERT_LESS_THAN_HEX16(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_HEX16((threshold), (actual), __LINE__, NULL)
220
- #define TEST_ASSERT_LESS_THAN_HEX32(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_HEX32((threshold), (actual), __LINE__, NULL)
221
- #define TEST_ASSERT_LESS_THAN_HEX64(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_HEX64((threshold), (actual), __LINE__, NULL)
222
- #define TEST_ASSERT_LESS_THAN_CHAR(threshold, actual) UNITY_TEST_ASSERT_SMALLER_THAN_CHAR((threshold), (actual), __LINE__, NULL)
223
-
224
- #define TEST_ASSERT_GREATER_OR_EQUAL(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT((threshold), (actual), __LINE__, NULL)
225
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT((threshold), (actual), __LINE__, NULL)
226
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT8(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT8((threshold), (actual), __LINE__, NULL)
227
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT16(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT16((threshold), (actual), __LINE__, NULL)
228
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT32(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT32((threshold), (actual), __LINE__, NULL)
229
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64((threshold), (actual), __LINE__, NULL)
230
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT((threshold), (actual), __LINE__, NULL)
231
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT8(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT8((threshold), (actual), __LINE__, NULL)
232
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT16(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT16((threshold), (actual), __LINE__, NULL)
233
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT32(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT32((threshold), (actual), __LINE__, NULL)
234
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64((threshold), (actual), __LINE__, NULL)
235
- #define TEST_ASSERT_GREATER_OR_EQUAL_size_t(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT((threshold), (actual), __LINE__, NULL)
236
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX8(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX8((threshold), (actual), __LINE__, NULL)
237
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX16(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX16((threshold), (actual), __LINE__, NULL)
238
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX32(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX32((threshold), (actual), __LINE__, NULL)
239
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64((threshold), (actual), __LINE__, NULL)
240
- #define TEST_ASSERT_GREATER_OR_EQUAL_CHAR(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_CHAR((threshold), (actual), __LINE__, NULL)
241
-
242
- #define TEST_ASSERT_LESS_OR_EQUAL(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT((threshold), (actual), __LINE__, NULL)
243
- #define TEST_ASSERT_LESS_OR_EQUAL_INT(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT((threshold), (actual), __LINE__, NULL)
244
- #define TEST_ASSERT_LESS_OR_EQUAL_INT8(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT8((threshold), (actual), __LINE__, NULL)
245
- #define TEST_ASSERT_LESS_OR_EQUAL_INT16(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT16((threshold), (actual), __LINE__, NULL)
246
- #define TEST_ASSERT_LESS_OR_EQUAL_INT32(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT32((threshold), (actual), __LINE__, NULL)
247
- #define TEST_ASSERT_LESS_OR_EQUAL_INT64(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64((threshold), (actual), __LINE__, NULL)
248
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT((threshold), (actual), __LINE__, NULL)
249
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT8(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT8((threshold), (actual), __LINE__, NULL)
250
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT16(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT16((threshold), (actual), __LINE__, NULL)
251
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT32(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT32((threshold), (actual), __LINE__, NULL)
252
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT64(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64((threshold), (actual), __LINE__, NULL)
253
- #define TEST_ASSERT_LESS_OR_EQUAL_size_t(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT((threshold), (actual), __LINE__, NULL)
254
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX8(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX8((threshold), (actual), __LINE__, NULL)
255
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX16(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX16((threshold), (actual), __LINE__, NULL)
256
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX32(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX32((threshold), (actual), __LINE__, NULL)
257
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX64(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64((threshold), (actual), __LINE__, NULL)
258
- #define TEST_ASSERT_LESS_OR_EQUAL_CHAR(threshold, actual) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_CHAR((threshold), (actual), __LINE__, NULL)
259
-
260
- /* Integer Ranges (of all sizes) */
261
- #define TEST_ASSERT_INT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_INT_WITHIN((delta), (expected), (actual), __LINE__, NULL)
262
- #define TEST_ASSERT_INT8_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_INT8_WITHIN((delta), (expected), (actual), __LINE__, NULL)
263
- #define TEST_ASSERT_INT16_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_INT16_WITHIN((delta), (expected), (actual), __LINE__, NULL)
264
- #define TEST_ASSERT_INT32_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_INT32_WITHIN((delta), (expected), (actual), __LINE__, NULL)
265
- #define TEST_ASSERT_INT64_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_INT64_WITHIN((delta), (expected), (actual), __LINE__, NULL)
266
- #define TEST_ASSERT_UINT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT_WITHIN((delta), (expected), (actual), __LINE__, NULL)
267
- #define TEST_ASSERT_UINT8_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT8_WITHIN((delta), (expected), (actual), __LINE__, NULL)
268
- #define TEST_ASSERT_UINT16_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT16_WITHIN((delta), (expected), (actual), __LINE__, NULL)
269
- #define TEST_ASSERT_UINT32_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT32_WITHIN((delta), (expected), (actual), __LINE__, NULL)
270
- #define TEST_ASSERT_UINT64_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT64_WITHIN((delta), (expected), (actual), __LINE__, NULL)
271
- #define TEST_ASSERT_size_t_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT_WITHIN((delta), (expected), (actual), __LINE__, NULL)
272
- #define TEST_ASSERT_HEX_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX32_WITHIN((delta), (expected), (actual), __LINE__, NULL)
273
- #define TEST_ASSERT_HEX8_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX8_WITHIN((delta), (expected), (actual), __LINE__, NULL)
274
- #define TEST_ASSERT_HEX16_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX16_WITHIN((delta), (expected), (actual), __LINE__, NULL)
275
- #define TEST_ASSERT_HEX32_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX32_WITHIN((delta), (expected), (actual), __LINE__, NULL)
276
- #define TEST_ASSERT_HEX64_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX64_WITHIN((delta), (expected), (actual), __LINE__, NULL)
277
- #define TEST_ASSERT_CHAR_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_CHAR_WITHIN((delta), (expected), (actual), __LINE__, NULL)
278
-
279
- /* Integer Array Ranges (of all sizes) */
280
- #define TEST_ASSERT_INT_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_INT_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
281
- #define TEST_ASSERT_INT8_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_INT8_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
282
- #define TEST_ASSERT_INT16_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_INT16_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
283
- #define TEST_ASSERT_INT32_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_INT32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
284
- #define TEST_ASSERT_INT64_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_INT64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
285
- #define TEST_ASSERT_UINT_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_UINT_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
286
- #define TEST_ASSERT_UINT8_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_UINT8_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
287
- #define TEST_ASSERT_UINT16_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_UINT16_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
288
- #define TEST_ASSERT_UINT32_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_UINT32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
289
- #define TEST_ASSERT_UINT64_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_UINT64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
290
- #define TEST_ASSERT_size_t_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_UINT_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
291
- #define TEST_ASSERT_HEX_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_HEX32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
292
- #define TEST_ASSERT_HEX8_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_HEX8_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
293
- #define TEST_ASSERT_HEX16_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_HEX16_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
294
- #define TEST_ASSERT_HEX32_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_HEX32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
295
- #define TEST_ASSERT_HEX64_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
296
- #define TEST_ASSERT_CHAR_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_CHAR_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, NULL)
297
-
298
-
299
- /* Structs and Strings */
300
- #define TEST_ASSERT_EQUAL_PTR(expected, actual) UNITY_TEST_ASSERT_EQUAL_PTR((expected), (actual), __LINE__, NULL)
301
- #define TEST_ASSERT_EQUAL_STRING(expected, actual) UNITY_TEST_ASSERT_EQUAL_STRING((expected), (actual), __LINE__, NULL)
302
- #define TEST_ASSERT_EQUAL_STRING_LEN(expected, actual, len) UNITY_TEST_ASSERT_EQUAL_STRING_LEN((expected), (actual), (len), __LINE__, NULL)
303
- #define TEST_ASSERT_EQUAL_MEMORY(expected, actual, len) UNITY_TEST_ASSERT_EQUAL_MEMORY((expected), (actual), (len), __LINE__, NULL)
304
-
305
- /* Arrays */
306
- #define TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
307
- #define TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
308
- #define TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
309
- #define TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
310
- #define TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
311
- #define TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
312
- #define TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
313
- #define TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
314
- #define TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
315
- #define TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
316
- #define TEST_ASSERT_EQUAL_size_t_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
317
- #define TEST_ASSERT_EQUAL_HEX_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
318
- #define TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
319
- #define TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
320
- #define TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
321
- #define TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
322
- #define TEST_ASSERT_EQUAL_PTR_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_PTR_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
323
- #define TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
324
- #define TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements) UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY((expected), (actual), (len), (num_elements), __LINE__, NULL)
325
- #define TEST_ASSERT_EQUAL_CHAR_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_CHAR_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
326
-
327
- /* Arrays Compared To Single Value */
328
- #define TEST_ASSERT_EACH_EQUAL_INT(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_INT((expected), (actual), (num_elements), __LINE__, NULL)
329
- #define TEST_ASSERT_EACH_EQUAL_INT8(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_INT8((expected), (actual), (num_elements), __LINE__, NULL)
330
- #define TEST_ASSERT_EACH_EQUAL_INT16(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_INT16((expected), (actual), (num_elements), __LINE__, NULL)
331
- #define TEST_ASSERT_EACH_EQUAL_INT32(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_INT32((expected), (actual), (num_elements), __LINE__, NULL)
332
- #define TEST_ASSERT_EACH_EQUAL_INT64(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_INT64((expected), (actual), (num_elements), __LINE__, NULL)
333
- #define TEST_ASSERT_EACH_EQUAL_UINT(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_UINT((expected), (actual), (num_elements), __LINE__, NULL)
334
- #define TEST_ASSERT_EACH_EQUAL_UINT8(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_UINT8((expected), (actual), (num_elements), __LINE__, NULL)
335
- #define TEST_ASSERT_EACH_EQUAL_UINT16(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_UINT16((expected), (actual), (num_elements), __LINE__, NULL)
336
- #define TEST_ASSERT_EACH_EQUAL_UINT32(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_UINT32((expected), (actual), (num_elements), __LINE__, NULL)
337
- #define TEST_ASSERT_EACH_EQUAL_UINT64(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_UINT64((expected), (actual), (num_elements), __LINE__, NULL)
338
- #define TEST_ASSERT_EACH_EQUAL_size_t(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_UINT((expected), (actual), (num_elements), __LINE__, NULL)
339
- #define TEST_ASSERT_EACH_EQUAL_HEX(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_HEX32((expected), (actual), (num_elements), __LINE__, NULL)
340
- #define TEST_ASSERT_EACH_EQUAL_HEX8(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_HEX8((expected), (actual), (num_elements), __LINE__, NULL)
341
- #define TEST_ASSERT_EACH_EQUAL_HEX16(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_HEX16((expected), (actual), (num_elements), __LINE__, NULL)
342
- #define TEST_ASSERT_EACH_EQUAL_HEX32(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_HEX32((expected), (actual), (num_elements), __LINE__, NULL)
343
- #define TEST_ASSERT_EACH_EQUAL_HEX64(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_HEX64((expected), (actual), (num_elements), __LINE__, NULL)
344
- #define TEST_ASSERT_EACH_EQUAL_PTR(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_PTR((expected), (actual), (num_elements), __LINE__, NULL)
345
- #define TEST_ASSERT_EACH_EQUAL_STRING(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_STRING((expected), (actual), (num_elements), __LINE__, NULL)
346
- #define TEST_ASSERT_EACH_EQUAL_MEMORY(expected, actual, len, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_MEMORY((expected), (actual), (len), (num_elements), __LINE__, NULL)
347
- #define TEST_ASSERT_EACH_EQUAL_CHAR(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_CHAR((expected), (actual), (num_elements), __LINE__, NULL)
348
-
349
- /* Floating Point (If Enabled) */
350
- #define TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_FLOAT_WITHIN((delta), (expected), (actual), __LINE__, NULL)
351
- #define TEST_ASSERT_FLOAT_NOT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN((delta), (expected), (actual), __LINE__, NULL)
352
- #define TEST_ASSERT_EQUAL_FLOAT(expected, actual) UNITY_TEST_ASSERT_EQUAL_FLOAT((expected), (actual), __LINE__, NULL)
353
- #define TEST_ASSERT_NOT_EQUAL_FLOAT(expected, actual) UNITY_TEST_ASSERT_NOT_EQUAL_FLOAT((expected), (actual), __LINE__, NULL)
354
- #define TEST_ASSERT_FLOAT_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_FLOAT_ARRAY_WITHIN((delta), (expected), (actual), (num_elements), __LINE__, NULL)
355
- #define TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
356
- #define TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT((expected), (actual), (num_elements), __LINE__, NULL)
357
- #define TEST_ASSERT_GREATER_THAN_FLOAT(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_FLOAT((threshold), (actual), __LINE__, NULL)
358
- #define TEST_ASSERT_GREATER_OR_EQUAL_FLOAT(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_FLOAT((threshold), (actual), __LINE__, NULL)
359
- #define TEST_ASSERT_LESS_THAN_FLOAT(threshold, actual) UNITY_TEST_ASSERT_LESS_THAN_FLOAT((threshold), (actual), __LINE__, NULL)
360
- #define TEST_ASSERT_LESS_OR_EQUAL_FLOAT(threshold, actual) UNITY_TEST_ASSERT_LESS_OR_EQUAL_FLOAT((threshold), (actual), __LINE__, NULL)
361
- #define TEST_ASSERT_FLOAT_IS_INF(actual) UNITY_TEST_ASSERT_FLOAT_IS_INF((actual), __LINE__, NULL)
362
- #define TEST_ASSERT_FLOAT_IS_NEG_INF(actual) UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF((actual), __LINE__, NULL)
363
- #define TEST_ASSERT_FLOAT_IS_NAN(actual) UNITY_TEST_ASSERT_FLOAT_IS_NAN((actual), __LINE__, NULL)
364
- #define TEST_ASSERT_FLOAT_IS_DETERMINATE(actual) UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE((actual), __LINE__, NULL)
365
- #define TEST_ASSERT_FLOAT_IS_NOT_INF(actual) UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF((actual), __LINE__, NULL)
366
- #define TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual) UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF((actual), __LINE__, NULL)
367
- #define TEST_ASSERT_FLOAT_IS_NOT_NAN(actual) UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN((actual), __LINE__, NULL)
368
- #define TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual) UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE((actual), __LINE__, NULL)
369
-
370
- /* Double (If Enabled) */
371
- #define TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_DOUBLE_WITHIN((delta), (expected), (actual), __LINE__, NULL)
372
- #define TEST_ASSERT_DOUBLE_NOT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN((delta), (expected), (actual), __LINE__, NULL)
373
- #define TEST_ASSERT_EQUAL_DOUBLE(expected, actual) UNITY_TEST_ASSERT_EQUAL_DOUBLE((expected), (actual), __LINE__, NULL)
374
- #define TEST_ASSERT_NOT_EQUAL_DOUBLE(expected, actual) UNITY_TEST_ASSERT_NOT_EQUAL_DOUBLE((expected), (actual), __LINE__, NULL)
375
- #define TEST_ASSERT_DOUBLE_ARRAY_WITHIN(delta, expected, actual, num_elements) UNITY_TEST_ASSERT_DOUBLE_ARRAY_WITHIN((delta), (expected), (actual), (num_elements), __LINE__, NULL)
376
- #define TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY((expected), (actual), (num_elements), __LINE__, NULL)
377
- #define TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements) UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE((expected), (actual), (num_elements), __LINE__, NULL)
378
- #define TEST_ASSERT_GREATER_THAN_DOUBLE(threshold, actual) UNITY_TEST_ASSERT_GREATER_THAN_DOUBLE((threshold), (actual), __LINE__, NULL)
379
- #define TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE(threshold, actual) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE((threshold), (actual), __LINE__, NULL)
380
- #define TEST_ASSERT_LESS_THAN_DOUBLE(threshold, actual) UNITY_TEST_ASSERT_LESS_THAN_DOUBLE((threshold), (actual), __LINE__, NULL)
381
- #define TEST_ASSERT_LESS_OR_EQUAL_DOUBLE(threshold, actual) UNITY_TEST_ASSERT_LESS_OR_EQUAL_DOUBLE((threshold), (actual), __LINE__, NULL)
382
- #define TEST_ASSERT_DOUBLE_IS_INF(actual) UNITY_TEST_ASSERT_DOUBLE_IS_INF((actual), __LINE__, NULL)
383
- #define TEST_ASSERT_DOUBLE_IS_NEG_INF(actual) UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF((actual), __LINE__, NULL)
384
- #define TEST_ASSERT_DOUBLE_IS_NAN(actual) UNITY_TEST_ASSERT_DOUBLE_IS_NAN((actual), __LINE__, NULL)
385
- #define TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual) UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE((actual), __LINE__, NULL)
386
- #define TEST_ASSERT_DOUBLE_IS_NOT_INF(actual) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF((actual), __LINE__, NULL)
387
- #define TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF((actual), __LINE__, NULL)
388
- #define TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN((actual), __LINE__, NULL)
389
- #define TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE((actual), __LINE__, NULL)
390
-
391
- /* Shorthand */
392
- #ifdef UNITY_SHORTHAND_AS_OLD
393
- #define TEST_ASSERT_EQUAL(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL)
394
- #define TEST_ASSERT_NOT_EQUAL(expected, actual) UNITY_TEST_ASSERT(((expected) != (actual)), __LINE__, " Expected Not-Equal")
395
- #endif
396
- #ifdef UNITY_SHORTHAND_AS_INT
397
- #define TEST_ASSERT_EQUAL(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL)
398
- #define TEST_ASSERT_NOT_EQUAL(expected, actual) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
399
- #endif
400
- #ifdef UNITY_SHORTHAND_AS_MEM
401
- #define TEST_ASSERT_EQUAL(expected, actual) UNITY_TEST_ASSERT_EQUAL_MEMORY((&expected), (&actual), sizeof(expected), __LINE__, NULL)
402
- #define TEST_ASSERT_NOT_EQUAL(expected, actual) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
403
- #endif
404
- #ifdef UNITY_SHORTHAND_AS_RAW
405
- #define TEST_ASSERT_EQUAL(expected, actual) UNITY_TEST_ASSERT(((expected) == (actual)), __LINE__, " Expected Equal")
406
- #define TEST_ASSERT_NOT_EQUAL(expected, actual) UNITY_TEST_ASSERT(((expected) != (actual)), __LINE__, " Expected Not-Equal")
407
- #endif
408
- #ifdef UNITY_SHORTHAND_AS_NONE
409
- #define TEST_ASSERT_EQUAL(expected, actual) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
410
- #define TEST_ASSERT_NOT_EQUAL(expected, actual) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
411
- #endif
412
-
413
- /*-------------------------------------------------------
414
- * Test Asserts (with additional messages)
415
- *-------------------------------------------------------*/
416
-
417
- /* Boolean */
418
- #define TEST_ASSERT_MESSAGE(condition, message) UNITY_TEST_ASSERT( (condition), __LINE__, (message))
419
- #define TEST_ASSERT_TRUE_MESSAGE(condition, message) UNITY_TEST_ASSERT( (condition), __LINE__, (message))
420
- #define TEST_ASSERT_UNLESS_MESSAGE(condition, message) UNITY_TEST_ASSERT( !(condition), __LINE__, (message))
421
- #define TEST_ASSERT_FALSE_MESSAGE(condition, message) UNITY_TEST_ASSERT( !(condition), __LINE__, (message))
422
- #define TEST_ASSERT_NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, (message))
423
- #define TEST_ASSERT_NOT_NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, (message))
424
- #define TEST_ASSERT_EMPTY_MESSAGE(pointer, message) UNITY_TEST_ASSERT_EMPTY( (pointer), __LINE__, (message))
425
- #define TEST_ASSERT_NOT_EMPTY_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NOT_EMPTY((pointer), __LINE__, (message))
426
-
427
- /* Integers (of all sizes) */
428
- #define TEST_ASSERT_EQUAL_INT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, (message))
429
- #define TEST_ASSERT_EQUAL_INT8_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT8((expected), (actual), __LINE__, (message))
430
- #define TEST_ASSERT_EQUAL_INT16_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT16((expected), (actual), __LINE__, (message))
431
- #define TEST_ASSERT_EQUAL_INT32_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT32((expected), (actual), __LINE__, (message))
432
- #define TEST_ASSERT_EQUAL_INT64_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT64((expected), (actual), __LINE__, (message))
433
- #define TEST_ASSERT_EQUAL_UINT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT( (expected), (actual), __LINE__, (message))
434
- #define TEST_ASSERT_EQUAL_UINT8_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT8( (expected), (actual), __LINE__, (message))
435
- #define TEST_ASSERT_EQUAL_UINT16_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT16( (expected), (actual), __LINE__, (message))
436
- #define TEST_ASSERT_EQUAL_UINT32_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT32( (expected), (actual), __LINE__, (message))
437
- #define TEST_ASSERT_EQUAL_UINT64_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT64( (expected), (actual), __LINE__, (message))
438
- #define TEST_ASSERT_EQUAL_size_t_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT( (expected), (actual), __LINE__, (message))
439
- #define TEST_ASSERT_EQUAL_HEX_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, (message))
440
- #define TEST_ASSERT_EQUAL_HEX8_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX8( (expected), (actual), __LINE__, (message))
441
- #define TEST_ASSERT_EQUAL_HEX16_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX16((expected), (actual), __LINE__, (message))
442
- #define TEST_ASSERT_EQUAL_HEX32_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, (message))
443
- #define TEST_ASSERT_EQUAL_HEX64_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX64((expected), (actual), __LINE__, (message))
444
- #define TEST_ASSERT_BITS_MESSAGE(mask, expected, actual, message) UNITY_TEST_ASSERT_BITS((mask), (expected), (actual), __LINE__, (message))
445
- #define TEST_ASSERT_BITS_HIGH_MESSAGE(mask, actual, message) UNITY_TEST_ASSERT_BITS((mask), (UNITY_UINT32)(-1), (actual), __LINE__, (message))
446
- #define TEST_ASSERT_BITS_LOW_MESSAGE(mask, actual, message) UNITY_TEST_ASSERT_BITS((mask), (UNITY_UINT32)(0), (actual), __LINE__, (message))
447
- #define TEST_ASSERT_BIT_HIGH_MESSAGE(bit, actual, message) UNITY_TEST_ASSERT_BITS(((UNITY_UINT32)1 << (bit)), (UNITY_UINT32)(-1), (actual), __LINE__, (message))
448
- #define TEST_ASSERT_BIT_LOW_MESSAGE(bit, actual, message) UNITY_TEST_ASSERT_BITS(((UNITY_UINT32)1 << (bit)), (UNITY_UINT32)(0), (actual), __LINE__, (message))
449
- #define TEST_ASSERT_EQUAL_CHAR_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_CHAR((expected), (actual), __LINE__, (message))
450
-
451
- /* Integer Not Equal To (of all sizes) */
452
- #define TEST_ASSERT_NOT_EQUAL_INT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_INT((threshold), (actual), __LINE__, (message))
453
- #define TEST_ASSERT_NOT_EQUAL_INT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_INT8((threshold), (actual), __LINE__, (message))
454
- #define TEST_ASSERT_NOT_EQUAL_INT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_INT16((threshold), (actual), __LINE__, (message))
455
- #define TEST_ASSERT_NOT_EQUAL_INT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_INT32((threshold), (actual), __LINE__, (message))
456
- #define TEST_ASSERT_NOT_EQUAL_INT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_INT64((threshold), (actual), __LINE__, (message))
457
- #define TEST_ASSERT_NOT_EQUAL_UINT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_UINT((threshold), (actual), __LINE__, (message))
458
- #define TEST_ASSERT_NOT_EQUAL_UINT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_UINT8((threshold), (actual), __LINE__, (message))
459
- #define TEST_ASSERT_NOT_EQUAL_UINT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_UINT16((threshold), (actual), __LINE__, (message))
460
- #define TEST_ASSERT_NOT_EQUAL_UINT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_UINT32((threshold), (actual), __LINE__, (message))
461
- #define TEST_ASSERT_NOT_EQUAL_UINT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_UINT64((threshold), (actual), __LINE__, (message))
462
- #define TEST_ASSERT_NOT_EQUAL_size_t_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_UINT((threshold), (actual), __LINE__, (message))
463
- #define TEST_ASSERT_NOT_EQUAL_HEX8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_HEX8((threshold), (actual), __LINE__, (message))
464
- #define TEST_ASSERT_NOT_EQUAL_HEX16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_HEX16((threshold), (actual), __LINE__, (message))
465
- #define TEST_ASSERT_NOT_EQUAL_HEX32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_HEX32((threshold), (actual), __LINE__, (message))
466
- #define TEST_ASSERT_NOT_EQUAL_HEX64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_HEX64((threshold), (actual), __LINE__, (message))
467
- #define TEST_ASSERT_NOT_EQUAL_CHAR_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_CHAR((threshold), (actual), __LINE__, (message))
468
-
469
-
470
- /* Integer Greater Than/ Less Than (of all sizes) */
471
- #define TEST_ASSERT_GREATER_THAN_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, (message))
472
- #define TEST_ASSERT_GREATER_THAN_INT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT((threshold), (actual), __LINE__, (message))
473
- #define TEST_ASSERT_GREATER_THAN_INT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT8((threshold), (actual), __LINE__, (message))
474
- #define TEST_ASSERT_GREATER_THAN_INT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT16((threshold), (actual), __LINE__, (message))
475
- #define TEST_ASSERT_GREATER_THAN_INT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT32((threshold), (actual), __LINE__, (message))
476
- #define TEST_ASSERT_GREATER_THAN_INT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_INT64((threshold), (actual), __LINE__, (message))
477
- #define TEST_ASSERT_GREATER_THAN_UINT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_UINT((threshold), (actual), __LINE__, (message))
478
- #define TEST_ASSERT_GREATER_THAN_UINT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_UINT8((threshold), (actual), __LINE__, (message))
479
- #define TEST_ASSERT_GREATER_THAN_UINT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_UINT16((threshold), (actual), __LINE__, (message))
480
- #define TEST_ASSERT_GREATER_THAN_UINT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_UINT32((threshold), (actual), __LINE__, (message))
481
- #define TEST_ASSERT_GREATER_THAN_UINT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_UINT64((threshold), (actual), __LINE__, (message))
482
- #define TEST_ASSERT_GREATER_THAN_size_t_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_UINT((threshold), (actual), __LINE__, (message))
483
- #define TEST_ASSERT_GREATER_THAN_HEX8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_HEX8((threshold), (actual), __LINE__, (message))
484
- #define TEST_ASSERT_GREATER_THAN_HEX16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_HEX16((threshold), (actual), __LINE__, (message))
485
- #define TEST_ASSERT_GREATER_THAN_HEX32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_HEX32((threshold), (actual), __LINE__, (message))
486
- #define TEST_ASSERT_GREATER_THAN_HEX64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_HEX64((threshold), (actual), __LINE__, (message))
487
- #define TEST_ASSERT_GREATER_THAN_CHAR_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_CHAR((threshold), (actual), __LINE__, (message))
488
-
489
- #define TEST_ASSERT_LESS_THAN_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_INT((threshold), (actual), __LINE__, (message))
490
- #define TEST_ASSERT_LESS_THAN_INT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_INT((threshold), (actual), __LINE__, (message))
491
- #define TEST_ASSERT_LESS_THAN_INT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_INT8((threshold), (actual), __LINE__, (message))
492
- #define TEST_ASSERT_LESS_THAN_INT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_INT16((threshold), (actual), __LINE__, (message))
493
- #define TEST_ASSERT_LESS_THAN_INT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_INT32((threshold), (actual), __LINE__, (message))
494
- #define TEST_ASSERT_LESS_THAN_INT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_INT64((threshold), (actual), __LINE__, (message))
495
- #define TEST_ASSERT_LESS_THAN_UINT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_UINT((threshold), (actual), __LINE__, (message))
496
- #define TEST_ASSERT_LESS_THAN_UINT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_UINT8((threshold), (actual), __LINE__, (message))
497
- #define TEST_ASSERT_LESS_THAN_UINT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_UINT16((threshold), (actual), __LINE__, (message))
498
- #define TEST_ASSERT_LESS_THAN_UINT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_UINT32((threshold), (actual), __LINE__, (message))
499
- #define TEST_ASSERT_LESS_THAN_UINT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_UINT64((threshold), (actual), __LINE__, (message))
500
- #define TEST_ASSERT_LESS_THAN_size_t_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_UINT((threshold), (actual), __LINE__, (message))
501
- #define TEST_ASSERT_LESS_THAN_HEX8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_HEX8((threshold), (actual), __LINE__, (message))
502
- #define TEST_ASSERT_LESS_THAN_HEX16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_HEX16((threshold), (actual), __LINE__, (message))
503
- #define TEST_ASSERT_LESS_THAN_HEX32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_HEX32((threshold), (actual), __LINE__, (message))
504
- #define TEST_ASSERT_LESS_THAN_HEX64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_HEX64((threshold), (actual), __LINE__, (message))
505
- #define TEST_ASSERT_LESS_THAN_CHAR_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_THAN_CHAR((threshold), (actual), __LINE__, (message))
506
-
507
- #define TEST_ASSERT_GREATER_OR_EQUAL_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT((threshold), (actual), __LINE__, (message))
508
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT((threshold), (actual), __LINE__, (message))
509
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT8((threshold), (actual), __LINE__, (message))
510
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT16((threshold), (actual), __LINE__, (message))
511
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT32((threshold), (actual), __LINE__, (message))
512
- #define TEST_ASSERT_GREATER_OR_EQUAL_INT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64((threshold), (actual), __LINE__, (message))
513
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT((threshold), (actual), __LINE__, (message))
514
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT8((threshold), (actual), __LINE__, (message))
515
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT16((threshold), (actual), __LINE__, (message))
516
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT32((threshold), (actual), __LINE__, (message))
517
- #define TEST_ASSERT_GREATER_OR_EQUAL_UINT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64((threshold), (actual), __LINE__, (message))
518
- #define TEST_ASSERT_GREATER_OR_EQUAL_size_t_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT((threshold), (actual), __LINE__, (message))
519
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX8((threshold), (actual), __LINE__, (message))
520
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX16((threshold), (actual), __LINE__, (message))
521
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX32((threshold), (actual), __LINE__, (message))
522
- #define TEST_ASSERT_GREATER_OR_EQUAL_HEX64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64((threshold), (actual), __LINE__, (message))
523
- #define TEST_ASSERT_GREATER_OR_EQUAL_CHAR_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_CHAR((threshold), (actual), __LINE__, (message))
524
-
525
- #define TEST_ASSERT_LESS_OR_EQUAL_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT((threshold), (actual), __LINE__, (message))
526
- #define TEST_ASSERT_LESS_OR_EQUAL_INT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT((threshold), (actual), __LINE__, (message))
527
- #define TEST_ASSERT_LESS_OR_EQUAL_INT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT8((threshold), (actual), __LINE__, (message))
528
- #define TEST_ASSERT_LESS_OR_EQUAL_INT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT16((threshold), (actual), __LINE__, (message))
529
- #define TEST_ASSERT_LESS_OR_EQUAL_INT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT32((threshold), (actual), __LINE__, (message))
530
- #define TEST_ASSERT_LESS_OR_EQUAL_INT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64((threshold), (actual), __LINE__, (message))
531
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT((threshold), (actual), __LINE__, (message))
532
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT8((threshold), (actual), __LINE__, (message))
533
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT16((threshold), (actual), __LINE__, (message))
534
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT32((threshold), (actual), __LINE__, (message))
535
- #define TEST_ASSERT_LESS_OR_EQUAL_UINT64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64((threshold), (actual), __LINE__, (message))
536
- #define TEST_ASSERT_LESS_OR_EQUAL_size_t_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT((threshold), (actual), __LINE__, (message))
537
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX8_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX8((threshold), (actual), __LINE__, (message))
538
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX16_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX16((threshold), (actual), __LINE__, (message))
539
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX32_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX32((threshold), (actual), __LINE__, (message))
540
- #define TEST_ASSERT_LESS_OR_EQUAL_HEX64_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64((threshold), (actual), __LINE__, (message))
541
- #define TEST_ASSERT_LESS_OR_EQUAL_CHAR_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_CHAR((threshold), (actual), __LINE__, (message))
542
-
543
- /* Integer Ranges (of all sizes) */
544
- #define TEST_ASSERT_INT_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_INT_WITHIN((delta), (expected), (actual), __LINE__, (message))
545
- #define TEST_ASSERT_INT8_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_INT8_WITHIN((delta), (expected), (actual), __LINE__, (message))
546
- #define TEST_ASSERT_INT16_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_INT16_WITHIN((delta), (expected), (actual), __LINE__, (message))
547
- #define TEST_ASSERT_INT32_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_INT32_WITHIN((delta), (expected), (actual), __LINE__, (message))
548
- #define TEST_ASSERT_INT64_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_INT64_WITHIN((delta), (expected), (actual), __LINE__, (message))
549
- #define TEST_ASSERT_UINT_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT_WITHIN((delta), (expected), (actual), __LINE__, (message))
550
- #define TEST_ASSERT_UINT8_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT8_WITHIN((delta), (expected), (actual), __LINE__, (message))
551
- #define TEST_ASSERT_UINT16_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT16_WITHIN((delta), (expected), (actual), __LINE__, (message))
552
- #define TEST_ASSERT_UINT32_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT32_WITHIN((delta), (expected), (actual), __LINE__, (message))
553
- #define TEST_ASSERT_UINT64_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT64_WITHIN((delta), (expected), (actual), __LINE__, (message))
554
- #define TEST_ASSERT_size_t_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT_WITHIN((delta), (expected), (actual), __LINE__, (message))
555
- #define TEST_ASSERT_HEX_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX32_WITHIN((delta), (expected), (actual), __LINE__, (message))
556
- #define TEST_ASSERT_HEX8_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX8_WITHIN((delta), (expected), (actual), __LINE__, (message))
557
- #define TEST_ASSERT_HEX16_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX16_WITHIN((delta), (expected), (actual), __LINE__, (message))
558
- #define TEST_ASSERT_HEX32_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX32_WITHIN((delta), (expected), (actual), __LINE__, (message))
559
- #define TEST_ASSERT_HEX64_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX64_WITHIN((delta), (expected), (actual), __LINE__, (message))
560
- #define TEST_ASSERT_CHAR_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_CHAR_WITHIN((delta), (expected), (actual), __LINE__, (message))
561
-
562
- /* Integer Array Ranges (of all sizes) */
563
- #define TEST_ASSERT_INT_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_INT_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
564
- #define TEST_ASSERT_INT8_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_INT8_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
565
- #define TEST_ASSERT_INT16_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_INT16_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
566
- #define TEST_ASSERT_INT32_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_INT32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
567
- #define TEST_ASSERT_INT64_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_INT64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
568
- #define TEST_ASSERT_UINT_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_UINT_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
569
- #define TEST_ASSERT_UINT8_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_UINT8_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
570
- #define TEST_ASSERT_UINT16_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_UINT16_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
571
- #define TEST_ASSERT_UINT32_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_UINT32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
572
- #define TEST_ASSERT_UINT64_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_UINT64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
573
- #define TEST_ASSERT_size_t_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_UINT_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
574
- #define TEST_ASSERT_HEX_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_HEX32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
575
- #define TEST_ASSERT_HEX8_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_HEX8_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
576
- #define TEST_ASSERT_HEX16_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_HEX16_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
577
- #define TEST_ASSERT_HEX32_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_HEX32_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
578
- #define TEST_ASSERT_HEX64_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
579
- #define TEST_ASSERT_CHAR_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_CHAR_ARRAY_WITHIN((delta), (expected), (actual), num_elements, __LINE__, (message))
580
-
581
-
582
- /* Structs and Strings */
583
- #define TEST_ASSERT_EQUAL_PTR_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_PTR((expected), (actual), __LINE__, (message))
584
- #define TEST_ASSERT_EQUAL_STRING_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_STRING((expected), (actual), __LINE__, (message))
585
- #define TEST_ASSERT_EQUAL_STRING_LEN_MESSAGE(expected, actual, len, message) UNITY_TEST_ASSERT_EQUAL_STRING_LEN((expected), (actual), (len), __LINE__, (message))
586
- #define TEST_ASSERT_EQUAL_MEMORY_MESSAGE(expected, actual, len, message) UNITY_TEST_ASSERT_EQUAL_MEMORY((expected), (actual), (len), __LINE__, (message))
587
-
588
- /* Arrays */
589
- #define TEST_ASSERT_EQUAL_INT_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
590
- #define TEST_ASSERT_EQUAL_INT8_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
591
- #define TEST_ASSERT_EQUAL_INT16_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
592
- #define TEST_ASSERT_EQUAL_INT32_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
593
- #define TEST_ASSERT_EQUAL_INT64_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
594
- #define TEST_ASSERT_EQUAL_UINT_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
595
- #define TEST_ASSERT_EQUAL_UINT8_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
596
- #define TEST_ASSERT_EQUAL_UINT16_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
597
- #define TEST_ASSERT_EQUAL_UINT32_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
598
- #define TEST_ASSERT_EQUAL_UINT64_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
599
- #define TEST_ASSERT_EQUAL_size_t_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
600
- #define TEST_ASSERT_EQUAL_HEX_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
601
- #define TEST_ASSERT_EQUAL_HEX8_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
602
- #define TEST_ASSERT_EQUAL_HEX16_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
603
- #define TEST_ASSERT_EQUAL_HEX32_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
604
- #define TEST_ASSERT_EQUAL_HEX64_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
605
- #define TEST_ASSERT_EQUAL_PTR_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_PTR_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
606
- #define TEST_ASSERT_EQUAL_STRING_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
607
- #define TEST_ASSERT_EQUAL_MEMORY_ARRAY_MESSAGE(expected, actual, len, num_elements, message) UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY((expected), (actual), (len), (num_elements), __LINE__, (message))
608
- #define TEST_ASSERT_EQUAL_CHAR_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_CHAR_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
609
-
610
- /* Arrays Compared To Single Value*/
611
- #define TEST_ASSERT_EACH_EQUAL_INT_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_INT((expected), (actual), (num_elements), __LINE__, (message))
612
- #define TEST_ASSERT_EACH_EQUAL_INT8_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_INT8((expected), (actual), (num_elements), __LINE__, (message))
613
- #define TEST_ASSERT_EACH_EQUAL_INT16_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_INT16((expected), (actual), (num_elements), __LINE__, (message))
614
- #define TEST_ASSERT_EACH_EQUAL_INT32_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_INT32((expected), (actual), (num_elements), __LINE__, (message))
615
- #define TEST_ASSERT_EACH_EQUAL_INT64_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_INT64((expected), (actual), (num_elements), __LINE__, (message))
616
- #define TEST_ASSERT_EACH_EQUAL_UINT_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_UINT((expected), (actual), (num_elements), __LINE__, (message))
617
- #define TEST_ASSERT_EACH_EQUAL_UINT8_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_UINT8((expected), (actual), (num_elements), __LINE__, (message))
618
- #define TEST_ASSERT_EACH_EQUAL_UINT16_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_UINT16((expected), (actual), (num_elements), __LINE__, (message))
619
- #define TEST_ASSERT_EACH_EQUAL_UINT32_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_UINT32((expected), (actual), (num_elements), __LINE__, (message))
620
- #define TEST_ASSERT_EACH_EQUAL_UINT64_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_UINT64((expected), (actual), (num_elements), __LINE__, (message))
621
- #define TEST_ASSERT_EACH_EQUAL_size_t_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_UINT((expected), (actual), (num_elements), __LINE__, (message))
622
- #define TEST_ASSERT_EACH_EQUAL_HEX_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_HEX32((expected), (actual), (num_elements), __LINE__, (message))
623
- #define TEST_ASSERT_EACH_EQUAL_HEX8_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_HEX8((expected), (actual), (num_elements), __LINE__, (message))
624
- #define TEST_ASSERT_EACH_EQUAL_HEX16_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_HEX16((expected), (actual), (num_elements), __LINE__, (message))
625
- #define TEST_ASSERT_EACH_EQUAL_HEX32_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_HEX32((expected), (actual), (num_elements), __LINE__, (message))
626
- #define TEST_ASSERT_EACH_EQUAL_HEX64_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_HEX64((expected), (actual), (num_elements), __LINE__, (message))
627
- #define TEST_ASSERT_EACH_EQUAL_PTR_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_PTR((expected), (actual), (num_elements), __LINE__, (message))
628
- #define TEST_ASSERT_EACH_EQUAL_STRING_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_STRING((expected), (actual), (num_elements), __LINE__, (message))
629
- #define TEST_ASSERT_EACH_EQUAL_MEMORY_MESSAGE(expected, actual, len, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_MEMORY((expected), (actual), (len), (num_elements), __LINE__, (message))
630
- #define TEST_ASSERT_EACH_EQUAL_CHAR_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_CHAR((expected), (actual), (num_elements), __LINE__, (message))
631
-
632
- /* Floating Point (If Enabled) */
633
- #define TEST_ASSERT_FLOAT_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_FLOAT_WITHIN((delta), (expected), (actual), __LINE__, (message))
634
- #define TEST_ASSERT_EQUAL_FLOAT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_FLOAT((expected), (actual), __LINE__, (message))
635
- #define TEST_ASSERT_NOT_EQUAL_FLOAT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_FLOAT((expected), (actual), __LINE__, (message))
636
- #define TEST_ASSERT_FLOAT_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_FLOAT_ARRAY_WITHIN((delta), (expected), (actual), (num_elements), __LINE__, (message))
637
- #define TEST_ASSERT_EQUAL_FLOAT_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
638
- #define TEST_ASSERT_EACH_EQUAL_FLOAT_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT((expected), (actual), (num_elements), __LINE__, (message))
639
- #define TEST_ASSERT_GREATER_THAN_FLOAT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_FLOAT((threshold), (actual), __LINE__, (message))
640
- #define TEST_ASSERT_GREATER_OR_EQUAL_FLOAT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_FLOAT((threshold), (actual), __LINE__, (message))
641
- #define TEST_ASSERT_LESS_THAN_FLOAT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_LESS_THAN_FLOAT((threshold), (actual), __LINE__, (message))
642
- #define TEST_ASSERT_LESS_OR_EQUAL_FLOAT_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_LESS_OR_EQUAL_FLOAT((threshold), (actual), __LINE__, (message))
643
- #define TEST_ASSERT_FLOAT_IS_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_INF((actual), __LINE__, (message))
644
- #define TEST_ASSERT_FLOAT_IS_NEG_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF((actual), __LINE__, (message))
645
- #define TEST_ASSERT_FLOAT_IS_NAN_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_NAN((actual), __LINE__, (message))
646
- #define TEST_ASSERT_FLOAT_IS_DETERMINATE_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE((actual), __LINE__, (message))
647
- #define TEST_ASSERT_FLOAT_IS_NOT_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF((actual), __LINE__, (message))
648
- #define TEST_ASSERT_FLOAT_IS_NOT_NEG_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF((actual), __LINE__, (message))
649
- #define TEST_ASSERT_FLOAT_IS_NOT_NAN_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN((actual), __LINE__, (message))
650
- #define TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE_MESSAGE(actual, message) UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE((actual), __LINE__, (message))
651
-
652
- /* Double (If Enabled) */
653
- #define TEST_ASSERT_DOUBLE_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_DOUBLE_WITHIN((delta), (expected), (actual), __LINE__, (message))
654
- #define TEST_ASSERT_EQUAL_DOUBLE_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_DOUBLE((expected), (actual), __LINE__, (message))
655
- #define TEST_ASSERT_NOT_EQUAL_DOUBLE_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_NOT_EQUAL_DOUBLE((expected), (actual), __LINE__, (message))
656
- #define TEST_ASSERT_DOUBLE_ARRAY_WITHIN_MESSAGE(delta, expected, actual, num_elements, message) UNITY_TEST_ASSERT_DOUBLE_ARRAY_WITHIN((delta), (expected), (actual), (num_elements), __LINE__, (message))
657
- #define TEST_ASSERT_EQUAL_DOUBLE_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY((expected), (actual), (num_elements), __LINE__, (message))
658
- #define TEST_ASSERT_EACH_EQUAL_DOUBLE_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE((expected), (actual), (num_elements), __LINE__, (message))
659
- #define TEST_ASSERT_GREATER_THAN_DOUBLE_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_THAN_DOUBLE((threshold), (actual), __LINE__, (message))
660
- #define TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE((threshold), (actual), __LINE__, (message))
661
- #define TEST_ASSERT_LESS_THAN_DOUBLE_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_LESS_THAN_DOUBLE((threshold), (actual), __LINE__, (message))
662
- #define TEST_ASSERT_LESS_OR_EQUAL_DOUBLE_MESSAGE(threshold, actual, message) UNITY_TEST_ASSERT_LESS_OR_EQUAL_DOUBLE((threshold), (actual), __LINE__, (message))
663
- #define TEST_ASSERT_DOUBLE_IS_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_INF((actual), __LINE__, (message))
664
- #define TEST_ASSERT_DOUBLE_IS_NEG_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF((actual), __LINE__, (message))
665
- #define TEST_ASSERT_DOUBLE_IS_NAN_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_NAN((actual), __LINE__, (message))
666
- #define TEST_ASSERT_DOUBLE_IS_DETERMINATE_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE((actual), __LINE__, (message))
667
- #define TEST_ASSERT_DOUBLE_IS_NOT_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF((actual), __LINE__, (message))
668
- #define TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF((actual), __LINE__, (message))
669
- #define TEST_ASSERT_DOUBLE_IS_NOT_NAN_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN((actual), __LINE__, (message))
670
- #define TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE_MESSAGE(actual, message) UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE((actual), __LINE__, (message))
671
-
672
- /* Shorthand */
673
- #ifdef UNITY_SHORTHAND_AS_OLD
674
- #define TEST_ASSERT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, (message))
675
- #define TEST_ASSERT_NOT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT(((expected) != (actual)), __LINE__, (message))
676
- #endif
677
- #ifdef UNITY_SHORTHAND_AS_INT
678
- #define TEST_ASSERT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, message)
679
- #define TEST_ASSERT_NOT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
680
- #endif
681
- #ifdef UNITY_SHORTHAND_AS_MEM
682
- #define TEST_ASSERT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_MEMORY((&expected), (&actual), sizeof(expected), __LINE__, message)
683
- #define TEST_ASSERT_NOT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
684
- #endif
685
- #ifdef UNITY_SHORTHAND_AS_RAW
686
- #define TEST_ASSERT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT(((expected) == (actual)), __LINE__, message)
687
- #define TEST_ASSERT_NOT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT(((expected) != (actual)), __LINE__, message)
688
- #endif
689
- #ifdef UNITY_SHORTHAND_AS_NONE
690
- #define TEST_ASSERT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
691
- #define TEST_ASSERT_NOT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_FAIL(__LINE__, UnityStrErrShorthand)
692
- #endif
693
-
694
- /* end of UNITY_FRAMEWORK_H */
695
- #ifdef __cplusplus
696
- }
697
- #endif
698
- #endif