ceedling 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (991) hide show
  1. data/.gitignore +4 -0
  2. data/.vim +1 -0
  3. data/Gemfile +3 -0
  4. data/LICENSE +19 -0
  5. data/Rakefile +18 -0
  6. data/bin/ceedling +39 -0
  7. data/ceedling.gemspec +23 -0
  8. data/lib/ceedling/version.rb +10 -0
  9. data/lib/ceedling/version.rb.erb +10 -0
  10. data/lib/ceedling.rb +5 -0
  11. data/new_project_template/build/.gitkeep +0 -0
  12. data/new_project_template/project.yml +65 -0
  13. data/new_project_template/rakefile.rb +4 -0
  14. data/new_project_template/src/.gitkeep +0 -0
  15. data/new_project_template/test/.gitkeep +0 -0
  16. data/new_project_template/test/support/.gitkeep +0 -0
  17. data/new_project_template/vendor/ceedling/config/test_environment.rb +12 -0
  18. data/new_project_template/vendor/ceedling/docs/Ceedling Packet.odt +0 -0
  19. data/new_project_template/vendor/ceedling/docs/Ceedling Packet.pdf +0 -0
  20. data/new_project_template/vendor/ceedling/docs/CeedlingLogo.png +0 -0
  21. data/new_project_template/vendor/ceedling/examples/temp_sensor/gcc.yml +42 -0
  22. data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v4.yml +91 -0
  23. data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v5.yml +80 -0
  24. data/new_project_template/vendor/ceedling/examples/temp_sensor/project.yml +65 -0
  25. data/new_project_template/vendor/ceedling/examples/temp_sensor/rakefile.rb +5 -0
  26. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.c +42 -0
  27. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.h +13 -0
  28. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardware.c +27 -0
  29. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardware.h +11 -0
  30. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardwareConfigurator.c +18 -0
  31. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardwareConfigurator.h +10 -0
  32. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcModel.c +33 -0
  33. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcModel.h +13 -0
  34. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcTemperatureSensor.c +51 -0
  35. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcTemperatureSensor.h +10 -0
  36. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Executor.c +25 -0
  37. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Executor.h +9 -0
  38. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/IntrinsicsWrapper.c +18 -0
  39. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/IntrinsicsWrapper.h +7 -0
  40. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Main.c +46 -0
  41. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Main.h +7 -0
  42. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Model.c +10 -0
  43. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Model.h +8 -0
  44. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/ModelConfig.h +7 -0
  45. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TaskScheduler.c +72 -0
  46. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TaskScheduler.h +11 -0
  47. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.c +27 -0
  48. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.h +8 -0
  49. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureFilter.c +39 -0
  50. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureFilter.h +10 -0
  51. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConductor.c +15 -0
  52. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConductor.h +9 -0
  53. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConfigurator.c +51 -0
  54. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConfigurator.h +15 -0
  55. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerHardware.c +15 -0
  56. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerHardware.h +8 -0
  57. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptConfigurator.c +55 -0
  58. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptConfigurator.h +13 -0
  59. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptHandler.c +25 -0
  60. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptHandler.h +10 -0
  61. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerModel.c +9 -0
  62. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerModel.h +8 -0
  63. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Types.h +90 -0
  64. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c +18 -0
  65. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +8 -0
  66. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConductor.c +21 -0
  67. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConductor.h +7 -0
  68. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConfigurator.c +39 -0
  69. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConfigurator.h +13 -0
  70. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartHardware.c +22 -0
  71. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartHardware.h +9 -0
  72. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartModel.c +34 -0
  73. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartModel.h +10 -0
  74. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartPutChar.c +16 -0
  75. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartPutChar.h +8 -0
  76. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartTransmitBufferStatus.c +7 -0
  77. data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartTransmitBufferStatus.h +8 -0
  78. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcConductor.c +121 -0
  79. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcHardware.c +44 -0
  80. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcModel.c +33 -0
  81. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestExecutor.c +36 -0
  82. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestMain.c +24 -0
  83. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestModel.c +20 -0
  84. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTaskScheduler.c +104 -0
  85. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureCalculator.c +33 -0
  86. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureFilter.c +69 -0
  87. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerConductor.c +32 -0
  88. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerHardware.c +26 -0
  89. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerModel.c +18 -0
  90. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  91. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartConductor.c +40 -0
  92. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartHardware.c +36 -0
  93. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartModel.c +40 -0
  94. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.c +12 -0
  95. data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.h +8 -0
  96. data/new_project_template/vendor/ceedling/lib/cacheinator.rb +42 -0
  97. data/new_project_template/vendor/ceedling/lib/cacheinator_helper.rb +12 -0
  98. data/new_project_template/vendor/ceedling/lib/cmock_builder.rb +15 -0
  99. data/new_project_template/vendor/ceedling/lib/configurator.rb +254 -0
  100. data/new_project_template/vendor/ceedling/lib/configurator_builder.rb +408 -0
  101. data/new_project_template/vendor/ceedling/lib/configurator_plugins.rb +96 -0
  102. data/new_project_template/vendor/ceedling/lib/configurator_setup.rb +114 -0
  103. data/new_project_template/vendor/ceedling/lib/configurator_validator.rb +154 -0
  104. data/new_project_template/vendor/ceedling/lib/constants.rb +66 -0
  105. data/new_project_template/vendor/ceedling/lib/defaults.rb +349 -0
  106. data/new_project_template/vendor/ceedling/lib/dependinator.rb +92 -0
  107. data/new_project_template/vendor/ceedling/lib/file_finder.rb +132 -0
  108. data/new_project_template/vendor/ceedling/lib/file_finder_helper.rb +54 -0
  109. data/new_project_template/vendor/ceedling/lib/file_path_utils.rb +177 -0
  110. data/new_project_template/vendor/ceedling/lib/file_system_utils.rb +59 -0
  111. data/new_project_template/vendor/ceedling/lib/file_wrapper.rb +74 -0
  112. data/new_project_template/vendor/ceedling/lib/generator.rb +131 -0
  113. data/new_project_template/vendor/ceedling/lib/generator_test_results.rb +90 -0
  114. data/new_project_template/vendor/ceedling/lib/generator_test_results_sanity_checker.rb +62 -0
  115. data/new_project_template/vendor/ceedling/lib/generator_test_runner.rb +206 -0
  116. data/new_project_template/vendor/ceedling/lib/loginator.rb +31 -0
  117. data/new_project_template/vendor/ceedling/lib/makefile.rb +46 -0
  118. data/new_project_template/vendor/ceedling/lib/objects.yml +278 -0
  119. data/new_project_template/vendor/ceedling/lib/plugin.rb +63 -0
  120. data/new_project_template/vendor/ceedling/lib/plugin_manager.rb +85 -0
  121. data/new_project_template/vendor/ceedling/lib/plugin_manager_helper.rb +19 -0
  122. data/new_project_template/vendor/ceedling/lib/plugin_reportinator.rb +75 -0
  123. data/new_project_template/vendor/ceedling/lib/plugin_reportinator_helper.rb +52 -0
  124. data/new_project_template/vendor/ceedling/lib/preprocessinator.rb +43 -0
  125. data/new_project_template/vendor/ceedling/lib/preprocessinator_extractor.rb +27 -0
  126. data/new_project_template/vendor/ceedling/lib/preprocessinator_file_handler.rb +21 -0
  127. data/new_project_template/vendor/ceedling/lib/preprocessinator_helper.rb +46 -0
  128. data/new_project_template/vendor/ceedling/lib/preprocessinator_includes_handler.rb +55 -0
  129. data/new_project_template/vendor/ceedling/lib/project_config_manager.rb +38 -0
  130. data/new_project_template/vendor/ceedling/lib/project_file_loader.rb +64 -0
  131. data/new_project_template/vendor/ceedling/lib/rake_utils.rb +17 -0
  132. data/new_project_template/vendor/ceedling/lib/rake_wrapper.rb +31 -0
  133. data/new_project_template/vendor/ceedling/lib/rakefile.rb +60 -0
  134. data/new_project_template/vendor/ceedling/lib/release_invoker.rb +29 -0
  135. data/new_project_template/vendor/ceedling/lib/release_invoker_helper.rb +16 -0
  136. data/new_project_template/vendor/ceedling/lib/reportinator.rb +9 -0
  137. data/new_project_template/vendor/ceedling/lib/rules_cmock.rake +9 -0
  138. data/new_project_template/vendor/ceedling/lib/rules_preprocess.rake +26 -0
  139. data/new_project_template/vendor/ceedling/lib/rules_release.rake +63 -0
  140. data/new_project_template/vendor/ceedling/lib/rules_release_aux_dependencies.rake +15 -0
  141. data/new_project_template/vendor/ceedling/lib/rules_tests.rake +49 -0
  142. data/new_project_template/vendor/ceedling/lib/rules_tests_aux_dependencies.rake +15 -0
  143. data/new_project_template/vendor/ceedling/lib/setupinator.rb +45 -0
  144. data/new_project_template/vendor/ceedling/lib/stream_wrapper.rb +20 -0
  145. data/new_project_template/vendor/ceedling/lib/streaminator.rb +41 -0
  146. data/new_project_template/vendor/ceedling/lib/streaminator_helper.rb +15 -0
  147. data/new_project_template/vendor/ceedling/lib/system_wrapper.rb +67 -0
  148. data/new_project_template/vendor/ceedling/lib/task_invoker.rb +85 -0
  149. data/new_project_template/vendor/ceedling/lib/tasks_base.rake +104 -0
  150. data/new_project_template/vendor/ceedling/lib/tasks_filesystem.rake +89 -0
  151. data/new_project_template/vendor/ceedling/lib/tasks_release.rake +22 -0
  152. data/new_project_template/vendor/ceedling/lib/tasks_tests.rake +49 -0
  153. data/new_project_template/vendor/ceedling/lib/tasks_vendor.rake +36 -0
  154. data/new_project_template/vendor/ceedling/lib/test_includes_extractor.rb +81 -0
  155. data/new_project_template/vendor/ceedling/lib/test_invoker.rb +72 -0
  156. data/new_project_template/vendor/ceedling/lib/test_invoker_helper.rb +41 -0
  157. data/new_project_template/vendor/ceedling/lib/tool_executor.rb +178 -0
  158. data/new_project_template/vendor/ceedling/lib/tool_executor_helper.rb +57 -0
  159. data/new_project_template/vendor/ceedling/lib/verbosinator.rb +10 -0
  160. data/new_project_template/vendor/ceedling/lib/yaml_wrapper.rb +16 -0
  161. data/new_project_template/vendor/ceedling/plugins/stdout_ide_tests_report/stdout_ide_tests_report.rb +44 -0
  162. data/new_project_template/vendor/ceedling/plugins/stdout_ide_tests_report/stdout_ide_tests_report.yml +4 -0
  163. data/new_project_template/vendor/ceedling/plugins/stdout_pretty_tests_report/stdout_pretty_tests_report.rb +108 -0
  164. data/new_project_template/vendor/ceedling/plugins/stdout_pretty_tests_report/stdout_pretty_tests_report.yml +4 -0
  165. data/new_project_template/vendor/ceedling/plugins/xml_tests_report/xml_tests_report.rb +106 -0
  166. data/new_project_template/vendor/ceedling/rakefile.rb +59 -0
  167. data/new_project_template/vendor/ceedling/rakefile_helper.rb +23 -0
  168. data/new_project_template/vendor/ceedling/release/build.info +1 -0
  169. data/new_project_template/vendor/ceedling/release/version.info +1 -0
  170. data/new_project_template/vendor/ceedling/test/integration/paths.yml +17 -0
  171. data/new_project_template/vendor/ceedling/test/integration/paths_test.rb +80 -0
  172. data/new_project_template/vendor/ceedling/test/integration/rake_rules_aux_dependencies_test.rb +75 -0
  173. data/new_project_template/vendor/ceedling/test/integration/rake_rules_cmock_test.rb +74 -0
  174. data/new_project_template/vendor/ceedling/test/integration/rake_rules_preprocess_test.rb +178 -0
  175. data/new_project_template/vendor/ceedling/test/integration/rake_rules_test.rb +268 -0
  176. data/new_project_template/vendor/ceedling/test/integration/rake_tasks_test.rb +103 -0
  177. data/new_project_template/vendor/ceedling/test/integration_test_helper.rb +34 -0
  178. data/new_project_template/vendor/ceedling/test/rakefile_rules.rb +10 -0
  179. data/new_project_template/vendor/ceedling/test/rakefile_rules_aux_dependencies.rb +10 -0
  180. data/new_project_template/vendor/ceedling/test/rakefile_rules_cmock.rb +10 -0
  181. data/new_project_template/vendor/ceedling/test/rakefile_rules_preprocess.rb +10 -0
  182. data/new_project_template/vendor/ceedling/test/rakefile_tasks.rb +10 -0
  183. data/new_project_template/vendor/ceedling/test/system/file_system_dependencies.yml +20 -0
  184. data/new_project_template/vendor/ceedling/test/system/file_system_kitchen_sink.yml +20 -0
  185. data/new_project_template/vendor/ceedling/test/system/file_system_mocks.yml +20 -0
  186. data/new_project_template/vendor/ceedling/test/system/file_system_preprocess.yml +20 -0
  187. data/new_project_template/vendor/ceedling/test/system/file_system_simple.yml +20 -0
  188. data/new_project_template/vendor/ceedling/test/system/file_system_test.rb +78 -0
  189. data/new_project_template/vendor/ceedling/test/system/mocks/include/a_file.h +2 -0
  190. data/new_project_template/vendor/ceedling/test/system/mocks/include/other_stuff.h +2 -0
  191. data/new_project_template/vendor/ceedling/test/system/mocks/include/stuff.h +3 -0
  192. data/new_project_template/vendor/ceedling/test/system/mocks/source/a_file.c +9 -0
  193. data/new_project_template/vendor/ceedling/test/system/mocks/test/test_a_file.c +41 -0
  194. data/new_project_template/vendor/ceedling/test/system/mocks/test/test_no_file.c +14 -0
  195. data/new_project_template/vendor/ceedling/test/system/project_mocks.yml +43 -0
  196. data/new_project_template/vendor/ceedling/test/system/project_mocks_test.rb +38 -0
  197. data/new_project_template/vendor/ceedling/test/system/project_simple.yml +36 -0
  198. data/new_project_template/vendor/ceedling/test/system/project_simple_test.rb +39 -0
  199. data/new_project_template/vendor/ceedling/test/system/rule_mocks_test.rb +44 -0
  200. data/new_project_template/vendor/ceedling/test/system/rule_runners_test.rb +44 -0
  201. data/new_project_template/vendor/ceedling/test/system/simple/include/other_stuff.h +2 -0
  202. data/new_project_template/vendor/ceedling/test/system/simple/include/stuff.h +3 -0
  203. data/new_project_template/vendor/ceedling/test/system/simple/source/other_stuff.c +6 -0
  204. data/new_project_template/vendor/ceedling/test/system/simple/source/stuff.c +7 -0
  205. data/new_project_template/vendor/ceedling/test/system/simple/test/test_other_stuff.c +30 -0
  206. data/new_project_template/vendor/ceedling/test/system/simple/test/test_stuff.c +51 -0
  207. data/new_project_template/vendor/ceedling/test/system_test_helper.rb +73 -0
  208. data/new_project_template/vendor/ceedling/test/test_helper.rb +93 -0
  209. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_builder_test.rb +571 -0
  210. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_helper_test.rb +234 -0
  211. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_test.rb +232 -0
  212. data/new_project_template/vendor/ceedling/test/unit/busted/configurator_validator_test.rb +169 -0
  213. data/new_project_template/vendor/ceedling/test/unit/busted/deep_merge_fix_test.rb +55 -0
  214. data/new_project_template/vendor/ceedling/test/unit/busted/dependinator_test.rb +129 -0
  215. data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_helper_test.rb +45 -0
  216. data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_test.rb +114 -0
  217. data/new_project_template/vendor/ceedling/test/unit/busted/file_path_utils_test.rb +97 -0
  218. data/new_project_template/vendor/ceedling/test/unit/busted/file_system_utils_test.rb +21 -0
  219. data/new_project_template/vendor/ceedling/test/unit/busted/generator_test.rb +187 -0
  220. data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_results_test.rb +129 -0
  221. data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_runner_test.rb +478 -0
  222. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_extractor_test.rb +729 -0
  223. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_file_handler_test.rb +38 -0
  224. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_helper_test.rb +156 -0
  225. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_includes_handler_test.rb +93 -0
  226. data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_test.rb +57 -0
  227. data/new_project_template/vendor/ceedling/test/unit/busted/project_file_loader_test.rb +142 -0
  228. data/new_project_template/vendor/ceedling/test/unit/busted/setupinator_test.rb +45 -0
  229. data/new_project_template/vendor/ceedling/test/unit/busted/streaminator_test.rb +49 -0
  230. data/new_project_template/vendor/ceedling/test/unit/busted/task_invoker_test.rb +69 -0
  231. data/new_project_template/vendor/ceedling/test/unit/busted/test_includes_extractor_test.rb +111 -0
  232. data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_helper_test.rb +62 -0
  233. data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_test.rb +47 -0
  234. data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_helper_test.rb +100 -0
  235. data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_test.rb +351 -0
  236. data/new_project_template/vendor/ceedling/test/unit/busted/verbosinator_test.rb +65 -0
  237. data/new_project_template/vendor/ceedling/test/unit_test_helper.rb +16 -0
  238. data/new_project_template/vendor/ceedling/vendor/behaviors/Manifest.txt +9 -0
  239. data/new_project_template/vendor/ceedling/vendor/behaviors/Rakefile +19 -0
  240. data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  241. data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors.rb +76 -0
  242. data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  243. data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_test.rb +50 -0
  244. data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  245. data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  246. data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  247. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  248. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  249. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/license.txt +30 -0
  250. data/new_project_template/vendor/ceedling/vendor/c_exception/docs/readme.txt +236 -0
  251. data/new_project_template/vendor/ceedling/vendor/c_exception/lib/CException.c +39 -0
  252. data/new_project_template/vendor/ceedling/vendor/c_exception/lib/CException.h +70 -0
  253. data/new_project_template/vendor/ceedling/vendor/c_exception/makefile +24 -0
  254. data/new_project_template/vendor/ceedling/vendor/c_exception/rakefile.rb +41 -0
  255. data/new_project_template/vendor/ceedling/vendor/c_exception/release/build.info +2 -0
  256. data/new_project_template/vendor/ceedling/vendor/c_exception/release/version.info +2 -0
  257. data/new_project_template/vendor/ceedling/vendor/c_exception/test/CExceptionConfig.h +27 -0
  258. data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException.c +291 -0
  259. data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException_Runner.c +62 -0
  260. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  261. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  262. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  263. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  264. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +303 -0
  265. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  266. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +126 -0
  267. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  268. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  269. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  270. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  271. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  272. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  273. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  274. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  275. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +260 -0
  276. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  277. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  278. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  279. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  280. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  281. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  282. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  283. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  284. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  285. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  286. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  287. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  288. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  289. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  290. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  291. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  292. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  293. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  294. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  295. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  296. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  297. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  298. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  299. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  300. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/makefile +35 -0
  301. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile.rb +48 -0
  302. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile_helper.rb +243 -0
  303. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/build.info +2 -0
  304. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/version.info +2 -0
  305. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.c +856 -0
  306. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.h +213 -0
  307. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity_internals.h +355 -0
  308. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc.yml +42 -0
  309. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc_64.yml +43 -0
  310. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  311. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  312. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  313. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  314. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  315. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  316. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  317. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  318. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  319. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  320. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  321. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  322. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  323. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  324. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  325. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  326. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  327. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  328. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  329. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  330. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  331. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  332. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  333. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  334. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  335. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  336. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  337. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  338. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  339. data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testunity.c +1510 -0
  340. data/new_project_template/vendor/ceedling/vendor/cmock/config/production_environment.rb +14 -0
  341. data/new_project_template/vendor/ceedling/vendor/cmock/config/test_environment.rb +16 -0
  342. data/new_project_template/vendor/ceedling/vendor/cmock/docs/CMock Summary.odt +0 -0
  343. data/new_project_template/vendor/ceedling/vendor/cmock/docs/CMock Summary.pdf +0 -0
  344. data/new_project_template/vendor/ceedling/vendor/cmock/docs/license.txt +31 -0
  345. data/new_project_template/vendor/ceedling/vendor/cmock/examples/gcc.yml +43 -0
  346. data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v4.yml +91 -0
  347. data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v5.yml +80 -0
  348. data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile.rb +32 -0
  349. data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile_helper.rb +274 -0
  350. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
  351. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.c +42 -0
  352. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.h +11 -0
  353. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.c +27 -0
  354. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.h +9 -0
  355. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
  356. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
  357. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.c +33 -0
  358. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.h +13 -0
  359. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
  360. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
  361. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.c +25 -0
  362. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.h +9 -0
  363. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
  364. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
  365. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.c +46 -0
  366. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.h +7 -0
  367. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.c +10 -0
  368. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.h +8 -0
  369. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/ModelConfig.h +7 -0
  370. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.c +72 -0
  371. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.h +11 -0
  372. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
  373. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
  374. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
  375. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
  376. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.c +15 -0
  377. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.h +9 -0
  378. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
  379. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
  380. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.c +15 -0
  381. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.h +8 -0
  382. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
  383. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
  384. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
  385. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
  386. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.c +9 -0
  387. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.h +8 -0
  388. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Types.h +103 -0
  389. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
  390. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
  391. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.c +21 -0
  392. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.h +7 -0
  393. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
  394. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
  395. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.c +22 -0
  396. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.h +9 -0
  397. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.c +34 -0
  398. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.h +10 -0
  399. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.c +16 -0
  400. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.h +8 -0
  401. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
  402. data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
  403. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
  404. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
  405. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
  406. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcModel.c +33 -0
  407. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
  408. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestExecutor.c +36 -0
  409. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestMain.c +24 -0
  410. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestModel.c +20 -0
  411. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
  412. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
  413. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
  414. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
  415. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
  416. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
  417. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
  418. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
  419. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerModel.c +18 -0
  420. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
  421. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
  422. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
  423. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
  424. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartModel.c +40 -0
  425. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
  426. data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
  427. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
  428. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
  429. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
  430. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
  431. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
  432. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
  433. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
  434. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
  435. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
  436. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
  437. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
  438. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
  439. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
  440. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
  441. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
  442. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
  443. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
  444. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
  445. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
  446. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
  447. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
  448. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
  449. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
  450. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
  451. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
  452. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
  453. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
  454. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
  455. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
  456. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
  457. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
  458. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
  459. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
  460. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
  461. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
  462. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
  463. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
  464. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
  465. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
  466. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
  467. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
  468. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
  469. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
  470. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
  471. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
  472. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
  473. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
  474. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
  475. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
  476. data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
  477. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock.rb +65 -0
  478. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_config.rb +123 -0
  479. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_file_writer.rb +33 -0
  480. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator.rb +196 -0
  481. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_array.rb +57 -0
  482. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_callback.rb +78 -0
  483. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +51 -0
  484. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_expect.rb +86 -0
  485. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +85 -0
  486. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_utils.rb +177 -0
  487. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_header_parser.rb +270 -0
  488. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_plugin_manager.rb +40 -0
  489. data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_unityhelper_parser.rb +74 -0
  490. data/new_project_template/vendor/ceedling/vendor/cmock/rakefile.rb +89 -0
  491. data/new_project_template/vendor/ceedling/vendor/cmock/rakefile_helper.rb +383 -0
  492. data/new_project_template/vendor/ceedling/vendor/cmock/release/build.info +2 -0
  493. data/new_project_template/vendor/ceedling/vendor/cmock/release/version.info +2 -0
  494. data/new_project_template/vendor/ceedling/vendor/cmock/src/cmock.c +186 -0
  495. data/new_project_template/vendor/ceedling/vendor/cmock/src/cmock.h +30 -0
  496. data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc.yml +50 -0
  497. data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_32_with_64_support.yml +52 -0
  498. data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_64.yml +53 -0
  499. data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v4.yml +107 -0
  500. data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v5.yml +92 -0
  501. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.c +280 -0
  502. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.yml +12 -0
  503. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
  504. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
  505. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
  506. data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
  507. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/systest_generator.rb +178 -0
  508. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/config.yml +9 -0
  509. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/const.h +15 -0
  510. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/osek.h +275 -0
  511. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
  512. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +340 -0
  513. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +381 -0
  514. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
  515. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
  516. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
  517. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
  518. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
  519. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
  520. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
  521. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
  522. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
  523. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
  524. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
  525. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
  526. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
  527. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
  528. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
  529. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
  530. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +82 -0
  531. data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
  532. data/new_project_template/vendor/ceedling/vendor/cmock/test/test_helper.rb +44 -0
  533. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.rb +45 -0
  534. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
  535. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
  536. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_main_test.rb +412 -0
  537. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
  538. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
  539. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
  540. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
  541. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +159 -0
  542. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
  543. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_header_parser_test.rb +1170 -0
  544. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
  545. data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
  546. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
  547. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Rakefile +19 -0
  548. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
  549. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
  550. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
  551. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
  552. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
  553. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
  554. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
  555. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
  556. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
  557. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/license.txt +30 -0
  558. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/readme.txt +236 -0
  559. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.c +39 -0
  560. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.h +70 -0
  561. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/makefile +24 -0
  562. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/rakefile.rb +41 -0
  563. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/build.info +2 -0
  564. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/version.info +2 -0
  565. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +27 -0
  566. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException.c +291 -0
  567. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +62 -0
  568. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
  569. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
  570. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
  571. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
  572. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +303 -0
  573. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
  574. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +126 -0
  575. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
  576. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
  577. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
  578. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
  579. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
  580. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
  581. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/makefile +40 -0
  582. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
  583. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +260 -0
  584. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
  585. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
  586. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
  587. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
  588. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
  589. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
  590. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  591. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  592. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  593. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  594. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  595. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
  596. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  597. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
  598. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  599. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  600. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  601. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  602. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  603. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  604. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  605. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  606. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  607. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  608. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/makefile +35 -0
  609. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile.rb +48 -0
  610. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile_helper.rb +243 -0
  611. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +2 -0
  612. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +2 -0
  613. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +856 -0
  614. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +213 -0
  615. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +355 -0
  616. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc.yml +42 -0
  617. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_64.yml +43 -0
  618. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
  619. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
  620. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
  621. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  622. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  623. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  624. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
  625. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  626. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  627. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
  628. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  629. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  630. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  631. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  632. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  633. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  634. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  635. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  636. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  637. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  638. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
  639. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  640. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  641. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  642. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
  643. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
  644. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
  645. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
  646. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
  647. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testunity.c +1510 -0
  648. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/CHANGES +78 -0
  649. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/LICENSE +7 -0
  650. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/README +70 -0
  651. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/Rakefile +8 -0
  652. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
  653. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
  654. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  655. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  656. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  657. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  658. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  659. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  660. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  661. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  662. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  663. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  664. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  665. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
  666. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  667. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  668. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  669. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
  670. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  671. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  672. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  673. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  674. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  675. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
  676. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  677. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  678. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
  679. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  680. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  681. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
  682. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  683. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  684. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  685. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_prompt.rb +94 -0
  686. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
  687. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
  688. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_module.rb +202 -0
  689. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +303 -0
  690. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/test_file_filter.rb +23 -0
  691. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +126 -0
  692. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
  693. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
  694. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.txt +217 -0
  695. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/license.txt +31 -0
  696. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +10 -0
  697. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +12 -0
  698. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/makefile +40 -0
  699. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile.rb +32 -0
  700. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +260 -0
  701. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/readme.txt +18 -0
  702. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +24 -0
  703. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +3 -0
  704. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +9 -0
  705. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +2 -0
  706. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +62 -0
  707. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  708. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  709. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  710. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  711. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  712. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +37 -0
  713. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  714. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
  715. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  716. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  717. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  718. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  719. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  720. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  721. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  722. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  723. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  724. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  725. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/makefile +35 -0
  726. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile.rb +48 -0
  727. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile_helper.rb +243 -0
  728. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/build.info +2 -0
  729. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/version.info +2 -0
  730. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.c +856 -0
  731. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.h +213 -0
  732. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity_internals.h +355 -0
  733. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc.yml +42 -0
  734. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc_64.yml +43 -0
  735. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +101 -0
  736. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +89 -0
  737. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +79 -0
  738. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  739. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  740. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  741. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_msp430.yml +94 -0
  742. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  743. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  744. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +50 -0
  745. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  746. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  747. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  748. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  749. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  750. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  751. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  752. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  753. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  754. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  755. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +51 -0
  756. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  757. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  758. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  759. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +94 -0
  760. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/mocksample.c +51 -0
  761. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/sample.yml +9 -0
  762. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/testsample.c +51 -0
  763. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testparameterized.c +101 -0
  764. data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testunity.c +1510 -0
  765. data/new_project_template/vendor/ceedling/vendor/constructor/History.rdoc +19 -0
  766. data/new_project_template/vendor/ceedling/vendor/constructor/README.rdoc +72 -0
  767. data/new_project_template/vendor/ceedling/vendor/constructor/Rakefile +33 -0
  768. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Notes.txt +27 -0
  769. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Rakefile +15 -0
  770. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.erb +27 -0
  771. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.html +36 -0
  772. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.graffle +0 -0
  773. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.html +9 -0
  774. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.png +0 -0
  775. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.png +0 -0
  776. data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.rb +12 -0
  777. data/new_project_template/vendor/ceedling/vendor/constructor/lib/constructor.rb +127 -0
  778. data/new_project_template/vendor/ceedling/vendor/constructor/lib/constructor_struct.rb +33 -0
  779. data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_spec.rb +407 -0
  780. data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_struct_spec.rb +84 -0
  781. data/new_project_template/vendor/ceedling/vendor/deep_merge/MIT-LICENSE +20 -0
  782. data/new_project_template/vendor/ceedling/vendor/deep_merge/README +94 -0
  783. data/new_project_template/vendor/ceedling/vendor/deep_merge/Rakefile +28 -0
  784. data/new_project_template/vendor/ceedling/vendor/deep_merge/lib/deep_merge.rb +211 -0
  785. data/new_project_template/vendor/ceedling/vendor/deep_merge/test/test_deep_merge.rb +553 -0
  786. data/new_project_template/vendor/ceedling/vendor/diy/History.txt +28 -0
  787. data/new_project_template/vendor/ceedling/vendor/diy/README.rdoc +233 -0
  788. data/new_project_template/vendor/ceedling/vendor/diy/Rakefile +33 -0
  789. data/new_project_template/vendor/ceedling/vendor/diy/TODO.txt +9 -0
  790. data/new_project_template/vendor/ceedling/vendor/diy/diy.gemspec +131 -0
  791. data/new_project_template/vendor/ceedling/vendor/diy/lib/diy/factory.rb +36 -0
  792. data/new_project_template/vendor/ceedling/vendor/diy/lib/diy.rb +403 -0
  793. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/car.rb +7 -0
  794. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/chassis.rb +5 -0
  795. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/diy_example.rb +26 -0
  796. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/engine.rb +5 -0
  797. data/new_project_template/vendor/ceedling/vendor/diy/sample_code/objects.yml +10 -0
  798. data/new_project_template/vendor/ceedling/vendor/diy/test/constructor.rb +119 -0
  799. data/new_project_template/vendor/ceedling/vendor/diy/test/diy_test.rb +608 -0
  800. data/new_project_template/vendor/ceedling/vendor/diy/test/factory_test.rb +79 -0
  801. data/new_project_template/vendor/ceedling/vendor/diy/test/files/broken_construction.yml +7 -0
  802. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/cat.rb +3 -0
  803. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/extra_conflict.yml +5 -0
  804. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/heritage.rb +2 -0
  805. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/needs_input.yml +3 -0
  806. data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/the_cat_lineage.rb +1 -0
  807. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_model.rb +3 -0
  808. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_presenter.rb +3 -0
  809. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_view.rb +2 -0
  810. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/file_resolver.rb +2 -0
  811. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/other_thing.rb +2 -0
  812. data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/simple.yml +11 -0
  813. data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo/bar/qux.rb +7 -0
  814. data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo.rb +8 -0
  815. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/beef.rb +5 -0
  816. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/dog.rb +6 -0
  817. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/factory.yml +19 -0
  818. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/llama.rb +7 -0
  819. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/pork.rb +7 -0
  820. data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/kitten.rb +13 -0
  821. data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/objects.yml +13 -0
  822. data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/toy.rb +14 -0
  823. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/attached_things_builder.rb +2 -0
  824. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/invalid_method.yml +5 -0
  825. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/method_extractor.rb +3 -0
  826. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/nonsingleton_objects.yml +6 -0
  827. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/objects.yml +22 -0
  828. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing.rb +3 -0
  829. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing_builder.rb +25 -0
  830. data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/things_builder.rb +3 -0
  831. data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/objects.yml +14 -0
  832. data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/thinger.rb +7 -0
  833. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/base.rb +8 -0
  834. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/can.rb +6 -0
  835. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/goat.rb +6 -0
  836. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/objects.yml +12 -0
  837. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/paper.rb +6 -0
  838. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/plane.rb +7 -0
  839. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/shirt.rb +6 -0
  840. data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/wings.rb +8 -0
  841. data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/holder_thing.rb +3 -0
  842. data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/objects.yml +7 -0
  843. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/bird.rb +5 -0
  844. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/cat.rb +5 -0
  845. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb +8 -0
  846. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/lizard.rb +7 -0
  847. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/bad_module_specified.yml +8 -0
  848. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/class_name_combine.yml +8 -0
  849. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/hello.txt +1 -0
  850. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/no_module_specified.yml +8 -0
  851. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/objects.yml +21 -0
  852. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/road.rb +2 -0
  853. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/sky.rb +2 -0
  854. data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/subcontext.yml +22 -0
  855. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/air.rb +2 -0
  856. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/fat_cat.rb +3 -0
  857. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/objects.yml +19 -0
  858. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/pig.rb +3 -0
  859. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/thread_spinner.rb +3 -0
  860. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/tick.rb +3 -0
  861. data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/yard.rb +2 -0
  862. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_model.rb +3 -0
  863. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_presenter.rb +3 -0
  864. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_view.rb +1 -0
  865. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/data_source.rb +1 -0
  866. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_model.rb +3 -0
  867. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_presenter.rb +3 -0
  868. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_view.rb +1 -0
  869. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/giant_squid.rb +3 -0
  870. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/krill.rb +2 -0
  871. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/my_objects.yml +21 -0
  872. data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/sub_sub_context_test.yml +27 -0
  873. data/new_project_template/vendor/ceedling/vendor/diy/test/test_helper.rb +55 -0
  874. data/new_project_template/vendor/ceedling/vendor/hardmock/CHANGES +78 -0
  875. data/new_project_template/vendor/ceedling/vendor/hardmock/LICENSE +7 -0
  876. data/new_project_template/vendor/ceedling/vendor/hardmock/README +70 -0
  877. data/new_project_template/vendor/ceedling/vendor/hardmock/Rakefile +8 -0
  878. data/new_project_template/vendor/ceedling/vendor/hardmock/config/environment.rb +12 -0
  879. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/assert_error.rb +23 -0
  880. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/extend_test_unit.rb +14 -0
  881. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/errors.rb +22 -0
  882. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
  883. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
  884. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expector.rb +26 -0
  885. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
  886. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock.rb +180 -0
  887. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
  888. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
  889. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
  890. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/utils.rb +9 -0
  891. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock.rb +86 -0
  892. data/new_project_template/vendor/ceedling/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
  893. data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
  894. data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
  895. data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/test.rake +22 -0
  896. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
  897. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
  898. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
  899. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
  900. data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
  901. data/new_project_template/vendor/ceedling/vendor/hardmock/test/test_helper.rb +43 -0
  902. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
  903. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_test.rb +372 -0
  904. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expector_test.rb +57 -0
  905. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
  906. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
  907. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_test.rb +279 -0
  908. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
  909. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/trapper_test.rb +62 -0
  910. data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
  911. data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_prompt.rb +94 -0
  912. data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_reporter.rb +39 -0
  913. data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_config.yml +36 -0
  914. data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_module.rb +202 -0
  915. data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_test_runner.rb +303 -0
  916. data/new_project_template/vendor/ceedling/vendor/unity/auto/test_file_filter.rb +23 -0
  917. data/new_project_template/vendor/ceedling/vendor/unity/auto/unity_test_summary.rb +126 -0
  918. data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.odt +0 -0
  919. data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.pdf +0 -0
  920. data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.txt +217 -0
  921. data/new_project_template/vendor/ceedling/vendor/unity/docs/license.txt +31 -0
  922. data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.c +10 -0
  923. data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.h +12 -0
  924. data/new_project_template/vendor/ceedling/vendor/unity/examples/makefile +40 -0
  925. data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile.rb +32 -0
  926. data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile_helper.rb +260 -0
  927. data/new_project_template/vendor/ceedling/vendor/unity/examples/readme.txt +18 -0
  928. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.c +24 -0
  929. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.h +3 -0
  930. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.c +9 -0
  931. data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.h +2 -0
  932. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode.c +62 -0
  933. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode2.c +26 -0
  934. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
  935. data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
  936. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
  937. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
  938. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile.rb +37 -0
  939. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
  940. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/readme.txt +9 -0
  941. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
  942. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
  943. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
  944. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
  945. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
  946. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
  947. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
  948. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
  949. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
  950. data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
  951. data/new_project_template/vendor/ceedling/vendor/unity/makefile +35 -0
  952. data/new_project_template/vendor/ceedling/vendor/unity/rakefile.rb +48 -0
  953. data/new_project_template/vendor/ceedling/vendor/unity/rakefile_helper.rb +243 -0
  954. data/new_project_template/vendor/ceedling/vendor/unity/release/build.info +2 -0
  955. data/new_project_template/vendor/ceedling/vendor/unity/release/version.info +2 -0
  956. data/new_project_template/vendor/ceedling/vendor/unity/src/unity.c +856 -0
  957. data/new_project_template/vendor/ceedling/vendor/unity/src/unity.h +213 -0
  958. data/new_project_template/vendor/ceedling/vendor/unity/src/unity_internals.h +355 -0
  959. data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc.yml +42 -0
  960. data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc_64.yml +43 -0
  961. data/new_project_template/vendor/ceedling/vendor/unity/targets/hitech_picc18.yml +101 -0
  962. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v4.yml +89 -0
  963. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5.yml +79 -0
  964. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
  965. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
  966. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
  967. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_msp430.yml +94 -0
  968. data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
  969. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
  970. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_def.c +50 -0
  971. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
  972. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
  973. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
  974. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
  975. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
  976. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
  977. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
  978. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
  979. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new1.c +60 -0
  980. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new2.c +63 -0
  981. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_param.c +51 -0
  982. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run1.c +60 -0
  983. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run2.c +63 -0
  984. data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
  985. data/new_project_template/vendor/ceedling/vendor/unity/test/test_generate_test_runner.rb +94 -0
  986. data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/mocksample.c +51 -0
  987. data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/sample.yml +9 -0
  988. data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/testsample.c +51 -0
  989. data/new_project_template/vendor/ceedling/vendor/unity/test/testparameterized.c +101 -0
  990. data/new_project_template/vendor/ceedling/vendor/unity/test/testunity.c +1510 -0
  991. metadata +1058 -0
@@ -0,0 +1,1510 @@
1
+ /* ==========================================
2
+ Unity Project - A Test Framework for C
3
+ Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
4
+ [Released under MIT License. Please refer to license.txt for details]
5
+ ========================================== */
6
+
7
+ #include <setjmp.h>
8
+ #include "unity.h"
9
+
10
+ #define EXPECT_ABORT_BEGIN \
11
+ if (TEST_PROTECT()) \
12
+ {
13
+
14
+ #define VERIFY_FAILS_END \
15
+ } \
16
+ Unity.CurrentTestFailed = (Unity.CurrentTestFailed == 1) ? 0 : 1; \
17
+ if (Unity.CurrentTestFailed == 1) { \
18
+ SetToOneMeanWeAlreadyCheckedThisGuy = 1; \
19
+ UnityPrint("[[[[ Previous Test Should Have Failed But Did Not ]]]]"); \
20
+ UNITY_OUTPUT_CHAR('\n'); \
21
+ }
22
+
23
+ #define VERIFY_IGNORES_END \
24
+ } \
25
+ Unity.CurrentTestFailed = (Unity.CurrentTestIgnored == 1) ? 0 : 1; \
26
+ Unity.CurrentTestIgnored = 0; \
27
+ if (Unity.CurrentTestFailed == 1) { \
28
+ SetToOneMeanWeAlreadyCheckedThisGuy = 1; \
29
+ UnityPrint("[[[[ Previous Test Should Have Ignored But Did Not ]]]]"); \
30
+ UNITY_OUTPUT_CHAR('\n'); \
31
+ }
32
+
33
+ int SetToOneToFailInTearDown;
34
+ int SetToOneMeanWeAlreadyCheckedThisGuy;
35
+
36
+ void setUp(void)
37
+ {
38
+ SetToOneToFailInTearDown = 0;
39
+ SetToOneMeanWeAlreadyCheckedThisGuy = 0;
40
+ }
41
+
42
+ void tearDown(void)
43
+ {
44
+ if (SetToOneToFailInTearDown == 1)
45
+ TEST_FAIL_MESSAGE("<= Failed in tearDown");
46
+ if ((SetToOneMeanWeAlreadyCheckedThisGuy == 0) && (Unity.CurrentTestFailed > 0))
47
+ {
48
+ UnityPrint("[[[[ Previous Test Should Have Passed But Did Not ]]]]");
49
+ UNITY_OUTPUT_CHAR('\n');
50
+ }
51
+ }
52
+
53
+ void testTrue(void)
54
+ {
55
+ TEST_ASSERT(1);
56
+
57
+ TEST_ASSERT_TRUE(1);
58
+ }
59
+
60
+ void testFalse(void)
61
+ {
62
+ TEST_ASSERT_FALSE(0);
63
+
64
+ TEST_ASSERT_UNLESS(0);
65
+ }
66
+
67
+ void testPreviousPass(void)
68
+ {
69
+ TEST_ASSERT_EQUAL_INT(0U, Unity.TestFailures);
70
+ }
71
+
72
+ void testNotVanilla(void)
73
+ {
74
+ EXPECT_ABORT_BEGIN
75
+ TEST_ASSERT(0);
76
+ VERIFY_FAILS_END
77
+ }
78
+
79
+ void testNotTrue(void)
80
+ {
81
+ EXPECT_ABORT_BEGIN
82
+ TEST_ASSERT_TRUE(0);
83
+ VERIFY_FAILS_END
84
+ }
85
+
86
+ void testNotFalse(void)
87
+ {
88
+ EXPECT_ABORT_BEGIN
89
+ TEST_ASSERT_FALSE(1);
90
+ VERIFY_FAILS_END
91
+ }
92
+
93
+ void testNotUnless(void)
94
+ {
95
+ EXPECT_ABORT_BEGIN
96
+ TEST_ASSERT_UNLESS(1);
97
+ VERIFY_FAILS_END
98
+ }
99
+
100
+ void testNotNotEqual(void)
101
+ {
102
+ EXPECT_ABORT_BEGIN
103
+ TEST_ASSERT_NOT_EQUAL(10, 10);
104
+ VERIFY_FAILS_END
105
+ }
106
+
107
+ void testFail(void)
108
+ {
109
+ EXPECT_ABORT_BEGIN
110
+ TEST_FAIL_MESSAGE("Expected for testing");
111
+ VERIFY_FAILS_END
112
+ }
113
+
114
+ void testIsNull(void)
115
+ {
116
+ char* ptr1 = NULL;
117
+ char* ptr2 = "hello";
118
+
119
+ TEST_ASSERT_NULL(ptr1);
120
+ TEST_ASSERT_NOT_NULL(ptr2);
121
+ }
122
+
123
+ void testIsNullShouldFailIfNot(void)
124
+ {
125
+ char* ptr1 = "hello";
126
+
127
+ EXPECT_ABORT_BEGIN
128
+ TEST_ASSERT_NULL(ptr1);
129
+ VERIFY_FAILS_END
130
+ }
131
+
132
+ void testNotNullShouldFailIfNULL(void)
133
+ {
134
+ char* ptr1 = NULL;
135
+
136
+ EXPECT_ABORT_BEGIN
137
+ TEST_ASSERT_NOT_NULL(ptr1);
138
+ VERIFY_FAILS_END
139
+ }
140
+
141
+ void testIgnore(void)
142
+ {
143
+ EXPECT_ABORT_BEGIN
144
+ TEST_IGNORE();
145
+ TEST_FAIL_MESSAGE("This should not be reached");
146
+ VERIFY_IGNORES_END
147
+ }
148
+
149
+ void testIgnoreMessage(void)
150
+ {
151
+ EXPECT_ABORT_BEGIN
152
+ TEST_IGNORE_MESSAGE("This is an expected TEST_IGNORE_MESSAGE string!");
153
+ TEST_FAIL_MESSAGE("This should not be reached");
154
+ VERIFY_IGNORES_END
155
+ }
156
+
157
+ void testNotEqualInts(void)
158
+ {
159
+ EXPECT_ABORT_BEGIN
160
+ TEST_ASSERT_EQUAL_INT(3982, 3983);
161
+ VERIFY_FAILS_END
162
+ }
163
+
164
+ void testNotEqualInt8s(void)
165
+ {
166
+ EXPECT_ABORT_BEGIN
167
+ TEST_ASSERT_EQUAL_INT8(-127, -126);
168
+ VERIFY_FAILS_END
169
+ }
170
+
171
+ void testNotEqualInt16s(void)
172
+ {
173
+ EXPECT_ABORT_BEGIN
174
+ TEST_ASSERT_EQUAL_INT16(-16383, -16382);
175
+ VERIFY_FAILS_END
176
+ }
177
+
178
+ void testNotEqualInt32s(void)
179
+ {
180
+ EXPECT_ABORT_BEGIN
181
+ TEST_ASSERT_EQUAL_INT32(-2147483647, -2147483646);
182
+ VERIFY_FAILS_END
183
+ }
184
+
185
+ void testNotEqualBits(void)
186
+ {
187
+ EXPECT_ABORT_BEGIN
188
+ TEST_ASSERT_BITS(0xFF00, 0x5555, 0x5A55);
189
+ VERIFY_FAILS_END
190
+ }
191
+
192
+ void testNotEqualUInts(void)
193
+ {
194
+ _UU16 v0, v1;
195
+
196
+ v0 = 9000;
197
+ v1 = 9001;
198
+
199
+ EXPECT_ABORT_BEGIN
200
+ TEST_ASSERT_EQUAL_UINT(v0, v1);
201
+ VERIFY_FAILS_END
202
+ }
203
+
204
+ void testNotEqualUInt8s(void)
205
+ {
206
+ _UU8 v0, v1;
207
+
208
+ v0 = 254;
209
+ v1 = 255;
210
+
211
+ EXPECT_ABORT_BEGIN
212
+ TEST_ASSERT_EQUAL_UINT8(v0, v1);
213
+ VERIFY_FAILS_END
214
+ }
215
+
216
+ void testNotEqualUInt16s(void)
217
+ {
218
+ _UU16 v0, v1;
219
+
220
+ v0 = 65535;
221
+ v1 = 65534;
222
+
223
+ EXPECT_ABORT_BEGIN
224
+ TEST_ASSERT_EQUAL_UINT16(v0, v1);
225
+ VERIFY_FAILS_END
226
+ }
227
+
228
+ void testNotEqualUInt32s(void)
229
+ {
230
+ _UU32 v0, v1;
231
+
232
+ v0 = 4294967295;
233
+ v1 = 4294967294;
234
+
235
+ EXPECT_ABORT_BEGIN
236
+ TEST_ASSERT_EQUAL_UINT32(v0, v1);
237
+ VERIFY_FAILS_END
238
+ }
239
+
240
+ void testNotEqualHex8s(void)
241
+ {
242
+ _UU8 v0, v1;
243
+
244
+ v0 = 0x23;
245
+ v1 = 0x22;
246
+
247
+ EXPECT_ABORT_BEGIN
248
+ TEST_ASSERT_EQUAL_HEX8(v0, v1);
249
+ VERIFY_FAILS_END
250
+ }
251
+
252
+ void testNotEqualHex8sIfSigned(void)
253
+ {
254
+ _US8 v0, v1;
255
+
256
+ v0 = -2;
257
+ v1 = 2;
258
+
259
+ EXPECT_ABORT_BEGIN
260
+ TEST_ASSERT_EQUAL_HEX8(v0, v1);
261
+ VERIFY_FAILS_END
262
+ }
263
+
264
+ void testNotEqualHex16s(void)
265
+ {
266
+ _UU16 v0, v1;
267
+
268
+ v0 = 0x1234;
269
+ v1 = 0x1235;
270
+
271
+ EXPECT_ABORT_BEGIN
272
+ TEST_ASSERT_EQUAL_HEX16(v0, v1);
273
+ VERIFY_FAILS_END
274
+ }
275
+
276
+ void testNotEqualHex16sIfSigned(void)
277
+ {
278
+ _US16 v0, v1;
279
+
280
+ v0 = -1024;
281
+ v1 = -1028;
282
+
283
+ EXPECT_ABORT_BEGIN
284
+ TEST_ASSERT_EQUAL_HEX16(v0, v1);
285
+ VERIFY_FAILS_END
286
+ }
287
+
288
+ void testNotEqualHex32s(void)
289
+ {
290
+ _UU32 v0, v1;
291
+
292
+ v0 = 900000;
293
+ v1 = 900001;
294
+
295
+ EXPECT_ABORT_BEGIN
296
+ TEST_ASSERT_EQUAL_HEX32(v0, v1);
297
+ VERIFY_FAILS_END
298
+ }
299
+
300
+ void testNotEqualHex32sIfSigned(void)
301
+ {
302
+ _US32 v0, v1;
303
+
304
+ v0 = -900000;
305
+ v1 = 900001;
306
+
307
+ EXPECT_ABORT_BEGIN
308
+ TEST_ASSERT_EQUAL_HEX32(v0, v1);
309
+ VERIFY_FAILS_END
310
+ }
311
+
312
+ void testEqualInts(void)
313
+ {
314
+ int v0, v1;
315
+ int *p0, *p1;
316
+
317
+ v0 = 19467;
318
+ v1 = 19467;
319
+ p0 = &v0;
320
+ p1 = &v1;
321
+
322
+ TEST_ASSERT_EQUAL_INT(1837, 1837);
323
+ TEST_ASSERT_EQUAL_INT(-27365, -27365);
324
+ TEST_ASSERT_EQUAL_INT(v0, v1);
325
+ TEST_ASSERT_EQUAL_INT(19467, v1);
326
+ TEST_ASSERT_EQUAL_INT(v0, 19467);
327
+ TEST_ASSERT_EQUAL_INT(*p0, v1);
328
+ TEST_ASSERT_EQUAL_INT(*p0, *p1);
329
+ TEST_ASSERT_EQUAL_INT(*p0, 19467);
330
+ }
331
+
332
+ void testEqualUints(void)
333
+ {
334
+ unsigned int v0, v1;
335
+ unsigned int *p0, *p1;
336
+
337
+ v0 = 19467;
338
+ v1 = 19467;
339
+ p0 = &v0;
340
+ p1 = &v1;
341
+
342
+ TEST_ASSERT_EQUAL_UINT(1837, 1837);
343
+ TEST_ASSERT_EQUAL_UINT(v0, v1);
344
+ TEST_ASSERT_EQUAL_UINT(19467, v1);
345
+ TEST_ASSERT_EQUAL_UINT(v0, 19467);
346
+ TEST_ASSERT_EQUAL_UINT(*p0, v1);
347
+ TEST_ASSERT_EQUAL_UINT(*p0, *p1);
348
+ TEST_ASSERT_EQUAL_UINT(*p0, 19467);
349
+ TEST_ASSERT_EQUAL_UINT(60872u, 60872u);
350
+ }
351
+
352
+ void testNotEqual(void)
353
+ {
354
+ TEST_ASSERT_NOT_EQUAL(0, 1);
355
+ TEST_ASSERT_NOT_EQUAL(1, 0);
356
+ TEST_ASSERT_NOT_EQUAL(100, 101);
357
+ TEST_ASSERT_NOT_EQUAL(0, -1);
358
+ TEST_ASSERT_NOT_EQUAL(65535, -65535);
359
+ TEST_ASSERT_NOT_EQUAL(75, 900);
360
+ TEST_ASSERT_NOT_EQUAL(-100, -101);
361
+ }
362
+
363
+ void testEqualHex8s(void)
364
+ {
365
+ _UU8 v0, v1;
366
+ _UU8 *p0, *p1;
367
+
368
+ v0 = 0x22;
369
+ v1 = 0x22;
370
+ p0 = &v0;
371
+ p1 = &v1;
372
+
373
+ TEST_ASSERT_EQUAL_HEX8(0x22, 0x22);
374
+ TEST_ASSERT_EQUAL_HEX8(v0, v1);
375
+ TEST_ASSERT_EQUAL_HEX8(0x22, v1);
376
+ TEST_ASSERT_EQUAL_HEX8(v0, 0x22);
377
+ TEST_ASSERT_EQUAL_HEX8(*p0, v1);
378
+ TEST_ASSERT_EQUAL_HEX8(*p0, *p1);
379
+ TEST_ASSERT_EQUAL_HEX8(*p0, 0x22);
380
+ }
381
+
382
+ void testEqualHex8sNegatives(void)
383
+ {
384
+ _UU8 v0, v1;
385
+ _UU8 *p0, *p1;
386
+
387
+ v0 = 0xDD;
388
+ v1 = 0xDD;
389
+ p0 = &v0;
390
+ p1 = &v1;
391
+
392
+ TEST_ASSERT_EQUAL_HEX8(0xDD, 0xDD);
393
+ TEST_ASSERT_EQUAL_HEX8(v0, v1);
394
+ TEST_ASSERT_EQUAL_HEX8(0xDD, v1);
395
+ TEST_ASSERT_EQUAL_HEX8(v0, 0xDD);
396
+ TEST_ASSERT_EQUAL_HEX8(*p0, v1);
397
+ TEST_ASSERT_EQUAL_HEX8(*p0, *p1);
398
+ TEST_ASSERT_EQUAL_HEX8(*p0, 0xDD);
399
+ }
400
+
401
+ void testEqualHex16s(void)
402
+ {
403
+ _UU16 v0, v1;
404
+ _UU16 *p0, *p1;
405
+
406
+ v0 = 0x9876;
407
+ v1 = 0x9876;
408
+ p0 = &v0;
409
+ p1 = &v1;
410
+
411
+ TEST_ASSERT_EQUAL_HEX16(0x9876, 0x9876);
412
+ TEST_ASSERT_EQUAL_HEX16(v0, v1);
413
+ TEST_ASSERT_EQUAL_HEX16(0x9876, v1);
414
+ TEST_ASSERT_EQUAL_HEX16(v0, 0x9876);
415
+ TEST_ASSERT_EQUAL_HEX16(*p0, v1);
416
+ TEST_ASSERT_EQUAL_HEX16(*p0, *p1);
417
+ TEST_ASSERT_EQUAL_HEX16(*p0, 0x9876);
418
+ }
419
+
420
+ void testEqualHex32s(void)
421
+ {
422
+ _UU32 v0, v1;
423
+ _UU32 *p0, *p1;
424
+
425
+ v0 = 0x98765432ul;
426
+ v1 = 0x98765432ul;
427
+ p0 = &v0;
428
+ p1 = &v1;
429
+
430
+ TEST_ASSERT_EQUAL_HEX32(0x98765432ul, 0x98765432ul);
431
+ TEST_ASSERT_EQUAL_HEX32(v0, v1);
432
+ TEST_ASSERT_EQUAL_HEX32(0x98765432ul, v1);
433
+ TEST_ASSERT_EQUAL_HEX32(v0, 0x98765432ul);
434
+ TEST_ASSERT_EQUAL_HEX32(*p0, v1);
435
+ TEST_ASSERT_EQUAL_HEX32(*p0, *p1);
436
+ TEST_ASSERT_EQUAL_HEX32(*p0, 0x98765432ul);
437
+ }
438
+
439
+ void testEqualBits(void)
440
+ {
441
+ _UU32 v0 = 0xFF55AA00;
442
+ _UU32 v1 = 0x55550000;
443
+
444
+ TEST_ASSERT_BITS(v1, v0, 0x55550000);
445
+ TEST_ASSERT_BITS(v1, v0, 0xFF55CC00);
446
+ TEST_ASSERT_BITS(0xFFFFFFFF, v0, 0xFF55AA00);
447
+ TEST_ASSERT_BITS(0xFFFFFFFF, v0, v0);
448
+ TEST_ASSERT_BITS(0xF0F0F0F0, v0, 0xFC5DAE0F);
449
+ TEST_ASSERT_BITS_HIGH(v1, v0);
450
+ TEST_ASSERT_BITS_LOW(0x000055FF, v0);
451
+ TEST_ASSERT_BIT_HIGH(30, v0);
452
+ TEST_ASSERT_BIT_LOW(5, v0);
453
+ }
454
+
455
+ void testEqualShorts(void)
456
+ {
457
+ short v0, v1;
458
+ short *p0, *p1;
459
+
460
+ v0 = 19467;
461
+ v1 = 19467;
462
+ p0 = &v0;
463
+ p1 = &v1;
464
+
465
+ TEST_ASSERT_EQUAL_INT(1837, 1837);
466
+ TEST_ASSERT_EQUAL_INT(-2987, -2987);
467
+ TEST_ASSERT_EQUAL_INT(v0, v1);
468
+ TEST_ASSERT_EQUAL_INT(19467, v1);
469
+ TEST_ASSERT_EQUAL_INT(v0, 19467);
470
+ TEST_ASSERT_EQUAL_INT(*p0, v1);
471
+ TEST_ASSERT_EQUAL_INT(*p0, *p1);
472
+ TEST_ASSERT_EQUAL_INT(*p0, 19467);
473
+ }
474
+
475
+ void testEqualUShorts(void)
476
+ {
477
+ unsigned short v0, v1;
478
+ unsigned short *p0, *p1;
479
+
480
+ v0 = 19467;
481
+ v1 = 19467;
482
+ p0 = &v0;
483
+ p1 = &v1;
484
+
485
+ TEST_ASSERT_EQUAL_UINT(1837, 1837);
486
+ TEST_ASSERT_EQUAL_UINT(2987, 2987);
487
+ TEST_ASSERT_EQUAL_UINT(v0, v1);
488
+ TEST_ASSERT_EQUAL_UINT(19467, v1);
489
+ TEST_ASSERT_EQUAL_UINT(v0, 19467);
490
+ TEST_ASSERT_EQUAL_UINT(*p0, v1);
491
+ TEST_ASSERT_EQUAL_UINT(*p0, *p1);
492
+ TEST_ASSERT_EQUAL_UINT(*p0, 19467);
493
+ }
494
+
495
+ void testEqualChars(void)
496
+ {
497
+ signed char v0, v1;
498
+ signed char *p0, *p1;
499
+
500
+ v0 = 109;
501
+ v1 = 109;
502
+ p0 = &v0;
503
+ p1 = &v1;
504
+
505
+ TEST_ASSERT_EQUAL_INT(42, 42);
506
+ TEST_ASSERT_EQUAL_INT(-116, -116);
507
+ TEST_ASSERT_EQUAL_INT(v0, v1);
508
+ TEST_ASSERT_EQUAL_INT(109, v1);
509
+ TEST_ASSERT_EQUAL_INT(v0, 109);
510
+ TEST_ASSERT_EQUAL_INT(*p0, v1);
511
+ TEST_ASSERT_EQUAL_INT(*p0, *p1);
512
+ TEST_ASSERT_EQUAL_INT(*p0, 109);
513
+ }
514
+
515
+ void testEqualUChars(void)
516
+ {
517
+ unsigned char v0, v1;
518
+ unsigned char *p0, *p1;
519
+
520
+ v0 = 251;
521
+ v1 = 251;
522
+ p0 = &v0;
523
+ p1 = &v1;
524
+
525
+ TEST_ASSERT_EQUAL_INT(42, 42);
526
+ TEST_ASSERT_EQUAL_INT(v0, v1);
527
+ TEST_ASSERT_EQUAL_INT(251, v1);
528
+ TEST_ASSERT_EQUAL_INT(v0, 251);
529
+ TEST_ASSERT_EQUAL_INT(*p0, v1);
530
+ TEST_ASSERT_EQUAL_INT(*p0, *p1);
531
+ TEST_ASSERT_EQUAL_INT(*p0, 251);
532
+ }
533
+
534
+ void testEqualPointers(void)
535
+ {
536
+ int v0, v1;
537
+ int *p0, *p1, *p2;
538
+
539
+ v0 = 19467;
540
+ v1 = 18271;
541
+ p0 = &v0;
542
+ p1 = &v1;
543
+ p2 = &v1;
544
+
545
+ TEST_ASSERT_EQUAL_PTR(p0, &v0);
546
+ TEST_ASSERT_EQUAL_PTR(&v1, p1);
547
+ TEST_ASSERT_EQUAL_PTR(p2, p1);
548
+ TEST_ASSERT_EQUAL_PTR(&v0, &v0);
549
+ }
550
+
551
+ void testNotEqualPointers(void)
552
+ {
553
+ EXPECT_ABORT_BEGIN
554
+ TEST_ASSERT_EQUAL_PTR(0x12345678, 0x12345677);
555
+ VERIFY_FAILS_END
556
+ }
557
+
558
+ void testIntsWithinDelta(void)
559
+ {
560
+ TEST_ASSERT_INT_WITHIN(1, 5000, 5001);
561
+ TEST_ASSERT_INT_WITHIN(5, 5000, 4996);
562
+ TEST_ASSERT_INT_WITHIN(5, 5000, 5005);
563
+ TEST_ASSERT_INT_WITHIN(500, 50, -440);
564
+
565
+ TEST_ASSERT_INT_WITHIN(2, -1, -1);
566
+ TEST_ASSERT_INT_WITHIN(5, 1, -1);
567
+ TEST_ASSERT_INT_WITHIN(5, -1, 1);
568
+ }
569
+
570
+ void testIntsNotWithinDelta(void)
571
+ {
572
+ EXPECT_ABORT_BEGIN
573
+ TEST_ASSERT_INT_WITHIN(5, 5000, 5006);
574
+ VERIFY_FAILS_END
575
+ }
576
+
577
+ void testUIntsWithinDelta(void)
578
+ {
579
+ TEST_ASSERT_UINT_WITHIN(1, 5000, 5001);
580
+ TEST_ASSERT_UINT_WITHIN(5, 5000, 4996);
581
+ TEST_ASSERT_UINT_WITHIN(5, 5000, 5005);
582
+ }
583
+
584
+ void testUIntsNotWithinDelta(void)
585
+ {
586
+ EXPECT_ABORT_BEGIN
587
+ TEST_ASSERT_UINT_WITHIN(1, 2147483647u, 2147483649u);
588
+ VERIFY_FAILS_END
589
+ }
590
+
591
+ void testUIntsNotWithinDeltaEvenThoughASignedIntWouldPassSmallFirst(void)
592
+ {
593
+ EXPECT_ABORT_BEGIN
594
+ TEST_ASSERT_UINT_WITHIN(5, 1, -1);
595
+ VERIFY_FAILS_END
596
+ }
597
+
598
+ void testUIntsNotWithinDeltaEvenThoughASignedIntWouldPassBigFirst(void)
599
+ {
600
+ EXPECT_ABORT_BEGIN
601
+ TEST_ASSERT_UINT_WITHIN(5, -1, 1);
602
+ VERIFY_FAILS_END
603
+ }
604
+
605
+ void testHEX32sWithinDelta(void)
606
+ {
607
+ TEST_ASSERT_HEX32_WITHIN(1, 5000, 5001);
608
+ TEST_ASSERT_HEX32_WITHIN(5, 5000, 4996);
609
+ TEST_ASSERT_HEX32_WITHIN(5, 5000, 5005);
610
+ }
611
+
612
+ void testHEX32sNotWithinDelta(void)
613
+ {
614
+ EXPECT_ABORT_BEGIN
615
+ TEST_ASSERT_HEX32_WITHIN(1, 2147483647u, 2147483649u);
616
+ VERIFY_FAILS_END
617
+ }
618
+
619
+ void testHEX32sNotWithinDeltaEvenThoughASignedIntWouldPass(void)
620
+ {
621
+ EXPECT_ABORT_BEGIN
622
+ TEST_ASSERT_HEX32_WITHIN(5, 1, -1);
623
+ VERIFY_FAILS_END
624
+ }
625
+
626
+ void testHEX16sWithinDelta(void)
627
+ {
628
+ TEST_ASSERT_HEX16_WITHIN(1, 5000, 5001);
629
+ TEST_ASSERT_HEX16_WITHIN(5, 5000, 4996);
630
+ TEST_ASSERT_HEX16_WITHIN(5, 5000, 5005);
631
+ }
632
+
633
+ void testHEX16sNotWithinDelta(void)
634
+ {
635
+ EXPECT_ABORT_BEGIN
636
+ TEST_ASSERT_HEX16_WITHIN(2, 65535, 0);
637
+ VERIFY_FAILS_END
638
+ }
639
+
640
+ void testHEX8sWithinDelta(void)
641
+ {
642
+ TEST_ASSERT_HEX8_WITHIN(1, 254, 255);
643
+ TEST_ASSERT_HEX8_WITHIN(5, 251, 255);
644
+ TEST_ASSERT_HEX8_WITHIN(5, 1, 4);
645
+ }
646
+
647
+ void testHEX8sNotWithinDelta(void)
648
+ {
649
+ EXPECT_ABORT_BEGIN
650
+ TEST_ASSERT_HEX8_WITHIN(2, 255, 0);
651
+ VERIFY_FAILS_END
652
+ }
653
+
654
+ void testEqualStrings(void)
655
+ {
656
+ const char *testString = "foo";
657
+
658
+ TEST_ASSERT_EQUAL_STRING(testString, testString);
659
+ TEST_ASSERT_EQUAL_STRING("foo", "foo");
660
+ TEST_ASSERT_EQUAL_STRING("foo", testString);
661
+ TEST_ASSERT_EQUAL_STRING(testString, "foo");
662
+ TEST_ASSERT_EQUAL_STRING("", "");
663
+ }
664
+
665
+ void testEqualStringsWithCarriageReturnsAndLineFeeds(void)
666
+ {
667
+ const char *testString = "foo\r\nbar";
668
+
669
+ TEST_ASSERT_EQUAL_STRING(testString, testString);
670
+ TEST_ASSERT_EQUAL_STRING("foo\r\nbar", "foo\r\nbar");
671
+ TEST_ASSERT_EQUAL_STRING("foo\r\nbar", testString);
672
+ TEST_ASSERT_EQUAL_STRING(testString, "foo\r\nbar");
673
+ TEST_ASSERT_EQUAL_STRING("", "");
674
+ }
675
+
676
+ void testNotEqualString1(void)
677
+ {
678
+ EXPECT_ABORT_BEGIN
679
+ TEST_ASSERT_EQUAL_STRING("foo", "bar");
680
+ VERIFY_FAILS_END
681
+ }
682
+
683
+ void testNotEqualString2(void)
684
+ {
685
+ EXPECT_ABORT_BEGIN
686
+ TEST_ASSERT_EQUAL_STRING("foo", "");
687
+ VERIFY_FAILS_END
688
+ }
689
+
690
+ void testNotEqualString3(void)
691
+ {
692
+ EXPECT_ABORT_BEGIN
693
+ TEST_ASSERT_EQUAL_STRING("", "bar");
694
+ VERIFY_FAILS_END
695
+ }
696
+
697
+ void testNotEqualString4(void)
698
+ {
699
+ EXPECT_ABORT_BEGIN
700
+ TEST_ASSERT_EQUAL_STRING("bar\r", "bar\n");
701
+ VERIFY_FAILS_END
702
+ }
703
+
704
+ void testNotEqualString5(void)
705
+ {
706
+ const char str1[] = { 0x41, 0x42, 0x03, 0x00 };
707
+ const char str2[] = { 0x41, 0x42, 0x04, 0x00 };
708
+ EXPECT_ABORT_BEGIN
709
+ TEST_ASSERT_EQUAL_STRING(str1, str2);
710
+ VERIFY_FAILS_END
711
+ }
712
+
713
+ void testNotEqualString_ExpectedStringIsNull(void)
714
+ {
715
+ EXPECT_ABORT_BEGIN
716
+ TEST_ASSERT_EQUAL_STRING(NULL, "bar");
717
+ VERIFY_FAILS_END
718
+ }
719
+
720
+ void testNotEqualString_ActualStringIsNull(void)
721
+ {
722
+ EXPECT_ABORT_BEGIN
723
+ TEST_ASSERT_EQUAL_STRING("foo", NULL);
724
+ VERIFY_FAILS_END
725
+ }
726
+
727
+ void testEqualStringArrays(void)
728
+ {
729
+ const char *testStrings[] = { "foo", "boo", "woo", "moo" };
730
+ const char *expStrings[] = { "foo", "boo", "woo", "zoo" };
731
+
732
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, expStrings, 3);
733
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 3);
734
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 2);
735
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 1);
736
+ }
737
+
738
+ void testNotEqualStringArray1(void)
739
+ {
740
+ const char *testStrings[] = { "foo", "boo", "woo", "moo" };
741
+ const char *expStrings[] = { "foo", "boo", "woo", "zoo" };
742
+
743
+ EXPECT_ABORT_BEGIN
744
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
745
+ VERIFY_FAILS_END
746
+ }
747
+
748
+ void testNotEqualStringArray2(void)
749
+ {
750
+ const char *testStrings[] = { "zoo", "boo", "woo", "moo" };
751
+ const char *expStrings[] = { "foo", "boo", "woo", "moo" };
752
+
753
+ EXPECT_ABORT_BEGIN
754
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
755
+ VERIFY_FAILS_END
756
+ }
757
+
758
+ void testNotEqualStringArray3(void)
759
+ {
760
+ const char *testStrings[] = { "foo", "boo", "woo", NULL };
761
+ const char *expStrings[] = { "foo", "boo", "woo", "zoo" };
762
+
763
+ EXPECT_ABORT_BEGIN
764
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
765
+ VERIFY_FAILS_END
766
+ }
767
+
768
+ void testNotEqualStringArray4(void)
769
+ {
770
+ const char *testStrings[] = { "foo", "boo", "woo", "moo" };
771
+ const char *expStrings[] = { "foo", NULL, "woo", "moo" };
772
+
773
+ EXPECT_ABORT_BEGIN
774
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
775
+ VERIFY_FAILS_END
776
+ }
777
+
778
+ void testNotEqualStringArray5(void)
779
+ {
780
+ const char **testStrings = NULL;
781
+ const char *expStrings[] = { "foo", "boo", "woo", "zoo" };
782
+
783
+ EXPECT_ABORT_BEGIN
784
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
785
+ VERIFY_FAILS_END
786
+ }
787
+
788
+ void testNotEqualStringArray6(void)
789
+ {
790
+ const char *testStrings[] = { "foo", "boo", "woo", "zoo" };
791
+ const char **expStrings = NULL;
792
+
793
+ EXPECT_ABORT_BEGIN
794
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
795
+ VERIFY_FAILS_END
796
+ }
797
+
798
+ void testEqualStringArrayIfBothNulls(void)
799
+ {
800
+ const char **testStrings = NULL;
801
+ const char **expStrings = NULL;
802
+
803
+ TEST_ASSERT_EQUAL_STRING_ARRAY(expStrings, testStrings, 4);
804
+ }
805
+
806
+ void testEqualMemory(void)
807
+ {
808
+ const char *testString = "whatever";
809
+
810
+ TEST_ASSERT_EQUAL_MEMORY(testString, testString, 8);
811
+ TEST_ASSERT_EQUAL_MEMORY("whatever", "whatever", 8);
812
+ TEST_ASSERT_EQUAL_MEMORY("whatever", testString, 8);
813
+ TEST_ASSERT_EQUAL_MEMORY(testString, "whatever", 8);
814
+ TEST_ASSERT_EQUAL_MEMORY(testString, "whatever", 2);
815
+ TEST_ASSERT_EQUAL_MEMORY(NULL, NULL, 1);
816
+ }
817
+
818
+ void testNotEqualMemory1(void)
819
+ {
820
+ EXPECT_ABORT_BEGIN
821
+ TEST_ASSERT_EQUAL_MEMORY("foo", "bar", 3);
822
+ VERIFY_FAILS_END
823
+ }
824
+
825
+ void testNotEqualMemory2(void)
826
+ {
827
+ EXPECT_ABORT_BEGIN
828
+ TEST_ASSERT_EQUAL_MEMORY("fool", "food", 4);
829
+ VERIFY_FAILS_END
830
+ }
831
+
832
+ void testNotEqualMemory3(void)
833
+ {
834
+ EXPECT_ABORT_BEGIN
835
+ TEST_ASSERT_EQUAL_MEMORY(NULL, "food", 4);
836
+ VERIFY_FAILS_END
837
+ }
838
+
839
+ void testNotEqualMemory4(void)
840
+ {
841
+ EXPECT_ABORT_BEGIN
842
+ TEST_ASSERT_EQUAL_MEMORY("fool", NULL, 4);
843
+ VERIFY_FAILS_END
844
+ }
845
+
846
+ void testEqualIntArrays(void)
847
+ {
848
+ int p0[] = {1, 8, 987, -2};
849
+ int p1[] = {1, 8, 987, -2};
850
+ int p2[] = {1, 8, 987, 2};
851
+ int p3[] = {1, 500, 600, 700};
852
+
853
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p0, 1);
854
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p0, 4);
855
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p1, 4);
856
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p2, 3);
857
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p3, 1);
858
+ }
859
+
860
+ void testNotEqualIntArraysNullExpected(void)
861
+ {
862
+ int* p0 = NULL;
863
+ int p1[] = {1, 8, 987, 2};
864
+
865
+ EXPECT_ABORT_BEGIN
866
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p1, 4);
867
+ VERIFY_FAILS_END
868
+ }
869
+
870
+ void testNotEqualIntArraysNullActual(void)
871
+ {
872
+ int* p1 = NULL;
873
+ int p0[] = {1, 8, 987, 2};
874
+
875
+ EXPECT_ABORT_BEGIN
876
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p1, 4);
877
+ VERIFY_FAILS_END
878
+ }
879
+
880
+ void testNotEqualIntArrays1(void)
881
+ {
882
+ int p0[] = {1, 8, 987, -2};
883
+ int p1[] = {1, 8, 987, 2};
884
+
885
+ EXPECT_ABORT_BEGIN
886
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p1, 4);
887
+ VERIFY_FAILS_END
888
+ }
889
+
890
+ void testNotEqualIntArrays2(void)
891
+ {
892
+ int p0[] = {1, 8, 987, -2};
893
+ int p1[] = {2, 8, 987, -2};
894
+
895
+ EXPECT_ABORT_BEGIN
896
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p1, 4);
897
+ VERIFY_FAILS_END
898
+ }
899
+
900
+ void testNotEqualIntArrays3(void)
901
+ {
902
+ int p0[] = {1, 8, 987, -2};
903
+ int p1[] = {1, 8, 986, -2};
904
+
905
+ EXPECT_ABORT_BEGIN
906
+ TEST_ASSERT_EQUAL_INT_ARRAY(p0, p1, 4);
907
+ VERIFY_FAILS_END
908
+ }
909
+
910
+ void testEqualInt8Arrays(void)
911
+ {
912
+ _US8 p0[] = {1, 8, 117, -2};
913
+ _US8 p1[] = {1, 8, 117, -2};
914
+ _US8 p2[] = {1, 8, 117, 2};
915
+ _US8 p3[] = {1, 50, 60, 70};
916
+
917
+ TEST_ASSERT_EQUAL_INT8_ARRAY(p0, p0, 1);
918
+ TEST_ASSERT_EQUAL_INT8_ARRAY(p0, p0, 4);
919
+ TEST_ASSERT_EQUAL_INT8_ARRAY(p0, p1, 4);
920
+ TEST_ASSERT_EQUAL_INT8_ARRAY(p0, p2, 3);
921
+ TEST_ASSERT_EQUAL_INT8_ARRAY(p0, p3, 1);
922
+ }
923
+
924
+ void testNotEqualInt8Arrays(void)
925
+ {
926
+ _US8 p0[] = {1, 8, 127, -2};
927
+ _US8 p1[] = {1, 8, 127, 2};
928
+
929
+ EXPECT_ABORT_BEGIN
930
+ TEST_ASSERT_EQUAL_INT8_ARRAY(p0, p1, 4);
931
+ VERIFY_FAILS_END
932
+ }
933
+
934
+ void testEqualUIntArrays(void)
935
+ {
936
+ unsigned int p0[] = {1, 8, 987, 65132u};
937
+ unsigned int p1[] = {1, 8, 987, 65132u};
938
+ unsigned int p2[] = {1, 8, 987, 2};
939
+ unsigned int p3[] = {1, 500, 600, 700};
940
+
941
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p0, 1);
942
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p0, 4);
943
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p1, 4);
944
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p2, 3);
945
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p3, 1);
946
+ }
947
+
948
+ void testNotEqualUIntArrays1(void)
949
+ {
950
+ unsigned int p0[] = {1, 8, 987, 65132u};
951
+ unsigned int p1[] = {1, 8, 987, 65131u};
952
+
953
+ EXPECT_ABORT_BEGIN
954
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p1, 4);
955
+ VERIFY_FAILS_END
956
+ }
957
+
958
+ void testNotEqualUIntArrays2(void)
959
+ {
960
+ unsigned int p0[] = {1, 8, 987, 65132u};
961
+ unsigned int p1[] = {2, 8, 987, 65132u};
962
+
963
+ EXPECT_ABORT_BEGIN
964
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p1, 4);
965
+ VERIFY_FAILS_END
966
+ }
967
+
968
+ void testNotEqualUIntArrays3(void)
969
+ {
970
+ unsigned int p0[] = {1, 8, 987, 65132u};
971
+ unsigned int p1[] = {1, 8, 986, 65132u};
972
+
973
+ EXPECT_ABORT_BEGIN
974
+ TEST_ASSERT_EQUAL_UINT_ARRAY(p0, p1, 4);
975
+ VERIFY_FAILS_END
976
+ }
977
+
978
+ void testEqualInt16Arrays(void)
979
+ {
980
+ _UU16 p0[] = {1, 8, 117, 3};
981
+ _UU16 p1[] = {1, 8, 117, 3};
982
+ _UU16 p2[] = {1, 8, 117, 2};
983
+ _UU16 p3[] = {1, 50, 60, 70};
984
+
985
+ TEST_ASSERT_EQUAL_INT16_ARRAY(p0, p0, 1);
986
+ TEST_ASSERT_EQUAL_INT16_ARRAY(p0, p0, 4);
987
+ TEST_ASSERT_EQUAL_INT16_ARRAY(p0, p1, 4);
988
+ TEST_ASSERT_EQUAL_INT16_ARRAY(p0, p2, 3);
989
+ TEST_ASSERT_EQUAL_INT16_ARRAY(p0, p3, 1);
990
+ }
991
+
992
+ void testNotEqualInt16Arrays(void)
993
+ {
994
+ _UU16 p0[] = {1, 8, 127, 3};
995
+ _UU16 p1[] = {1, 8, 127, 2};
996
+
997
+ EXPECT_ABORT_BEGIN
998
+ TEST_ASSERT_EQUAL_INT16_ARRAY(p0, p1, 4);
999
+ VERIFY_FAILS_END
1000
+ }
1001
+
1002
+ void testEqualUINT16Arrays(void)
1003
+ {
1004
+ unsigned short p0[] = {1, 8, 987, 65132u};
1005
+ unsigned short p1[] = {1, 8, 987, 65132u};
1006
+ unsigned short p2[] = {1, 8, 987, 2};
1007
+ unsigned short p3[] = {1, 500, 600, 700};
1008
+
1009
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p0, 1);
1010
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p0, 4);
1011
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p1, 4);
1012
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p2, 3);
1013
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p3, 1);
1014
+ }
1015
+
1016
+ void testNotEqualUINT16Arrays1(void)
1017
+ {
1018
+ unsigned short p0[] = {1, 8, 987, 65132u};
1019
+ unsigned short p1[] = {1, 8, 987, 65131u};
1020
+
1021
+ EXPECT_ABORT_BEGIN
1022
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p1, 4);
1023
+ VERIFY_FAILS_END
1024
+ }
1025
+
1026
+ void testNotEqualUINT16Arrays2(void)
1027
+ {
1028
+ unsigned short p0[] = {1, 8, 987, 65132u};
1029
+ unsigned short p1[] = {2, 8, 987, 65132u};
1030
+
1031
+ EXPECT_ABORT_BEGIN
1032
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p1, 4);
1033
+ VERIFY_FAILS_END
1034
+ }
1035
+
1036
+ void testNotEqualUINT16Arrays3(void)
1037
+ {
1038
+ unsigned short p0[] = {1, 8, 987, 65132u};
1039
+ unsigned short p1[] = {1, 8, 986, 65132u};
1040
+
1041
+ EXPECT_ABORT_BEGIN
1042
+ TEST_ASSERT_EQUAL_UINT16_ARRAY(p0, p1, 4);
1043
+ VERIFY_FAILS_END
1044
+ }
1045
+
1046
+ void testEqualHEXArrays(void)
1047
+ {
1048
+ unsigned int p0[] = {1, 8, 987, 65132u};
1049
+ unsigned int p1[] = {1, 8, 987, 65132u};
1050
+ unsigned int p2[] = {1, 8, 987, 2};
1051
+ unsigned int p3[] = {1, 500, 600, 700};
1052
+
1053
+ TEST_ASSERT_EQUAL_HEX_ARRAY(p0, p0, 1);
1054
+ TEST_ASSERT_EQUAL_HEX_ARRAY(p0, p0, 4);
1055
+ TEST_ASSERT_EQUAL_HEX_ARRAY(p0, p1, 4);
1056
+ TEST_ASSERT_EQUAL_HEX32_ARRAY(p0, p2, 3);
1057
+ TEST_ASSERT_EQUAL_HEX32_ARRAY(p0, p3, 1);
1058
+ }
1059
+
1060
+ void testNotEqualHEXArrays1(void)
1061
+ {
1062
+ unsigned int p0[] = {1, 8, 987, 65132u};
1063
+ unsigned int p1[] = {1, 8, 987, 65131u};
1064
+
1065
+ EXPECT_ABORT_BEGIN
1066
+ TEST_ASSERT_EQUAL_HEX32_ARRAY(p0, p1, 4);
1067
+ VERIFY_FAILS_END
1068
+ }
1069
+
1070
+ void testNotEqualHEXArrays2(void)
1071
+ {
1072
+ unsigned int p0[] = {1, 8, 987, 65132u};
1073
+ unsigned int p1[] = {2, 8, 987, 65132u};
1074
+
1075
+ EXPECT_ABORT_BEGIN
1076
+ TEST_ASSERT_EQUAL_HEX32_ARRAY(p0, p1, 4);
1077
+ VERIFY_FAILS_END
1078
+ }
1079
+
1080
+ void testNotEqualHEXArrays3(void)
1081
+ {
1082
+ unsigned int p0[] = {1, 8, 987, 65132u};
1083
+ unsigned int p1[] = {1, 8, 986, 65132u};
1084
+
1085
+ EXPECT_ABORT_BEGIN
1086
+ TEST_ASSERT_EQUAL_HEX_ARRAY(p0, p1, 4);
1087
+ VERIFY_FAILS_END
1088
+ }
1089
+
1090
+ void testEqualHEX16Arrays(void)
1091
+ {
1092
+ unsigned short p0[] = {1, 8, 987, 65132u};
1093
+ unsigned short p1[] = {1, 8, 987, 65132u};
1094
+ unsigned short p2[] = {1, 8, 987, 2};
1095
+ unsigned short p3[] = {1, 500, 600, 700};
1096
+
1097
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p0, 1);
1098
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p0, 4);
1099
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p1, 4);
1100
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p2, 3);
1101
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p3, 1);
1102
+ }
1103
+
1104
+ void testNotEqualHEX16Arrays1(void)
1105
+ {
1106
+ unsigned short p0[] = {1, 8, 987, 65132u};
1107
+ unsigned short p1[] = {1, 8, 987, 65131u};
1108
+
1109
+ EXPECT_ABORT_BEGIN
1110
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p1, 4);
1111
+ VERIFY_FAILS_END
1112
+ }
1113
+
1114
+ void testNotEqualHEX16Arrays2(void)
1115
+ {
1116
+ unsigned short p0[] = {1, 8, 987, 65132u};
1117
+ unsigned short p1[] = {2, 8, 987, 65132u};
1118
+
1119
+ EXPECT_ABORT_BEGIN
1120
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p1, 4);
1121
+ VERIFY_FAILS_END
1122
+ }
1123
+
1124
+ void testNotEqualHEX16Arrays3(void)
1125
+ {
1126
+ unsigned short p0[] = {1, 8, 987, 65132u};
1127
+ unsigned short p1[] = {1, 8, 986, 65132u};
1128
+
1129
+ EXPECT_ABORT_BEGIN
1130
+ TEST_ASSERT_EQUAL_HEX16_ARRAY(p0, p1, 4);
1131
+ VERIFY_FAILS_END
1132
+ }
1133
+
1134
+ void testEqualHEX8Arrays(void)
1135
+ {
1136
+ unsigned short p0[] = {1, 8, 254u, 123};
1137
+ unsigned short p1[] = {1, 8, 254u, 123};
1138
+ unsigned short p2[] = {1, 8, 254u, 2};
1139
+ unsigned short p3[] = {1, 23, 25, 26};
1140
+
1141
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p0, 1);
1142
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p0, 4);
1143
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p1, 4);
1144
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p2, 3);
1145
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p3, 1);
1146
+ }
1147
+
1148
+ void testNotEqualHEX8Arrays1(void)
1149
+ {
1150
+ unsigned char p0[] = {1, 8, 254u, 253u};
1151
+ unsigned char p1[] = {1, 8, 254u, 252u};
1152
+
1153
+ EXPECT_ABORT_BEGIN
1154
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p1, 4);
1155
+ VERIFY_FAILS_END
1156
+ }
1157
+
1158
+ void testNotEqualHEX8Arrays2(void)
1159
+ {
1160
+ unsigned char p0[] = {1, 8, 254u, 253u};
1161
+ unsigned char p1[] = {2, 8, 254u, 253u};
1162
+
1163
+ EXPECT_ABORT_BEGIN
1164
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p1, 4);
1165
+ VERIFY_FAILS_END
1166
+ }
1167
+
1168
+ void testNotEqualHEX8Arrays3(void)
1169
+ {
1170
+ unsigned char p0[] = {1, 8, 254u, 253u};
1171
+ unsigned char p1[] = {1, 8, 255u, 253u};
1172
+
1173
+ EXPECT_ABORT_BEGIN
1174
+ TEST_ASSERT_EQUAL_HEX8_ARRAY(p0, p1, 4);
1175
+ VERIFY_FAILS_END
1176
+ }
1177
+
1178
+ void testEqualMemoryArrays(void)
1179
+ {
1180
+ int p0[] = {1, 8, 987, -2};
1181
+ int p1[] = {1, 8, 987, -2};
1182
+ int p2[] = {1, 8, 987, 2};
1183
+ int p3[] = {1, 500, 600, 700};
1184
+
1185
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p0, 4, 1);
1186
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p0, 4, 4);
1187
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p1, 4, 4);
1188
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p2, 4, 3);
1189
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p3, 4, 1);
1190
+ }
1191
+
1192
+ void testNotEqualMemoryArraysExpectedNull(void)
1193
+ {
1194
+ int* p0 = NULL;
1195
+ int p1[] = {1, 8, 987, 2};
1196
+
1197
+ EXPECT_ABORT_BEGIN
1198
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p1, 4, 4);
1199
+ VERIFY_FAILS_END
1200
+ }
1201
+
1202
+ void testNotEqualMemoryArraysActualNull(void)
1203
+ {
1204
+ int p0[] = {1, 8, 987, -2};
1205
+ int* p1 = NULL;
1206
+
1207
+ EXPECT_ABORT_BEGIN
1208
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p1, 4, 4);
1209
+ VERIFY_FAILS_END
1210
+ }
1211
+
1212
+ void testNotEqualMemoryArrays1(void)
1213
+ {
1214
+ int p0[] = {1, 8, 987, -2};
1215
+ int p1[] = {1, 8, 987, 2};
1216
+
1217
+ EXPECT_ABORT_BEGIN
1218
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p1, 4, 4);
1219
+ VERIFY_FAILS_END
1220
+ }
1221
+
1222
+ void testNotEqualMemoryArrays2(void)
1223
+ {
1224
+ int p0[] = {1, 8, 987, -2};
1225
+ int p1[] = {2, 8, 987, -2};
1226
+
1227
+ EXPECT_ABORT_BEGIN
1228
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p1, 4, 4);
1229
+ VERIFY_FAILS_END
1230
+ }
1231
+
1232
+ void testNotEqualMemoryArrays3(void)
1233
+ {
1234
+ int p0[] = {1, 8, 987, -2};
1235
+ int p1[] = {1, 8, 986, -2};
1236
+
1237
+ EXPECT_ABORT_BEGIN
1238
+ TEST_ASSERT_EQUAL_MEMORY_ARRAY(p0, p1, 4, 4);
1239
+ VERIFY_FAILS_END
1240
+ }
1241
+
1242
+ void testProtection(void)
1243
+ {
1244
+ volatile int mask = 0;
1245
+
1246
+ if (TEST_PROTECT())
1247
+ {
1248
+ mask |= 1;
1249
+ TEST_ABORT();
1250
+ }
1251
+ else
1252
+ {
1253
+ Unity.CurrentTestFailed = 0;
1254
+ mask |= 2;
1255
+ }
1256
+
1257
+ TEST_ASSERT_EQUAL(3, mask);
1258
+ }
1259
+
1260
+ void testIgnoredAndThenFailInTearDown(void)
1261
+ {
1262
+ SetToOneToFailInTearDown = 1;
1263
+ TEST_IGNORE();
1264
+ }
1265
+
1266
+ // ===================== THESE TEST WILL RUN IF YOUR CONFIG INCLUDES 64 BIT SUPPORT ==================
1267
+ #ifdef UNITY_SUPPORT_64
1268
+
1269
+ void testEqualHex64s(void)
1270
+ {
1271
+ _UU64 v0, v1;
1272
+ _UU64 *p0, *p1;
1273
+
1274
+ v0 = 0x9876543201234567;
1275
+ v1 = 0x9876543201234567;
1276
+ p0 = &v0;
1277
+ p1 = &v1;
1278
+
1279
+ TEST_ASSERT_EQUAL_HEX64(0x9876543201234567, 0x9876543201234567);
1280
+ TEST_ASSERT_EQUAL_HEX64(v0, v1);
1281
+ TEST_ASSERT_EQUAL_HEX64(0x9876543201234567, v1);
1282
+ TEST_ASSERT_EQUAL_HEX64(v0, 0x9876543201234567);
1283
+ TEST_ASSERT_EQUAL_HEX64(*p0, v1);
1284
+ TEST_ASSERT_EQUAL_HEX64(*p0, *p1);
1285
+ TEST_ASSERT_EQUAL_HEX64(*p0, 0x9876543201234567);
1286
+ }
1287
+
1288
+ void testNotEqualHex64s(void)
1289
+ {
1290
+ _UU64 v0, v1;
1291
+
1292
+ v0 = 9000000000;
1293
+ v1 = 9100000000;
1294
+
1295
+ EXPECT_ABORT_BEGIN
1296
+ TEST_ASSERT_EQUAL_HEX64(v0, v1);
1297
+ VERIFY_FAILS_END
1298
+ }
1299
+
1300
+ void testNotEqualHex64sIfSigned(void)
1301
+ {
1302
+ _US64 v0, v1;
1303
+
1304
+ v0 = -9000000000;
1305
+ v1 = 9000000000;
1306
+
1307
+ EXPECT_ABORT_BEGIN
1308
+ TEST_ASSERT_EQUAL_HEX64(v0, v1);
1309
+ VERIFY_FAILS_END
1310
+ }
1311
+
1312
+ void testHEX64sWithinDelta(void)
1313
+ {
1314
+ TEST_ASSERT_HEX64_WITHIN(1, 0x7FFFFFFFFFFFFFFF,0x7FFFFFFFFFFFFFFE);
1315
+ TEST_ASSERT_HEX64_WITHIN(5, 5000, 4996);
1316
+ TEST_ASSERT_HEX64_WITHIN(5, 5000, 5005);
1317
+ }
1318
+
1319
+ void testHEX64sNotWithinDelta(void)
1320
+ {
1321
+ EXPECT_ABORT_BEGIN
1322
+ TEST_ASSERT_HEX64_WITHIN(1, 0x7FFFFFFFFFFFFFFF, 0x7FFFFFFFFFFFFFFC);
1323
+ VERIFY_FAILS_END
1324
+ }
1325
+
1326
+ void testHEX64sNotWithinDeltaEvenThoughASignedIntWouldPass(void)
1327
+ {
1328
+ EXPECT_ABORT_BEGIN
1329
+ TEST_ASSERT_HEX64_WITHIN(5, 1, -1);
1330
+ VERIFY_FAILS_END
1331
+ }
1332
+
1333
+ void testEqualHEX64Arrays(void)
1334
+ {
1335
+ _UU64 p0[] = {1, 8, 987, 65132u};
1336
+ _UU64 p1[] = {1, 8, 987, 65132u};
1337
+ _UU64 p2[] = {1, 8, 987, 2};
1338
+ _UU64 p3[] = {1, 500, 600, 700};
1339
+
1340
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p0, 1);
1341
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p0, 4);
1342
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p1, 4);
1343
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p2, 3);
1344
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p3, 1);
1345
+ }
1346
+
1347
+ void testNotEqualHEX64Arrays1(void)
1348
+ {
1349
+ _UU64 p0[] = {1, 8, 987, 65132u};
1350
+ _UU64 p1[] = {1, 8, 987, 65131u};
1351
+
1352
+ EXPECT_ABORT_BEGIN
1353
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p1, 4);
1354
+ VERIFY_FAILS_END
1355
+ }
1356
+
1357
+ void testNotEqualHEX64Arrays2(void)
1358
+ {
1359
+ _UU64 p0[] = {1, 8, 987, 65132u};
1360
+ _UU64 p1[] = {2, 8, 987, 65132u};
1361
+
1362
+ EXPECT_ABORT_BEGIN
1363
+ TEST_ASSERT_EQUAL_HEX64_ARRAY(p0, p1, 4);
1364
+ VERIFY_FAILS_END
1365
+ }
1366
+
1367
+ #endif //64-bit SUPPORT
1368
+
1369
+ // ===================== THESE TEST WILL RUN IF YOUR CONFIG INCLUDES FLOAT SUPPORT ==================
1370
+ #ifndef UNITY_EXCLUDE_FLOAT
1371
+
1372
+ void testFloatsWithinDelta(void)
1373
+ {
1374
+ TEST_ASSERT_FLOAT_WITHIN(0.00003f, 187245.03485f, 187245.03488f);
1375
+ TEST_ASSERT_FLOAT_WITHIN(1.0f, 187245.0f, 187246.0f);
1376
+ TEST_ASSERT_FLOAT_WITHIN(0.05f, 9273.2549f, 9273.2049f);
1377
+ TEST_ASSERT_FLOAT_WITHIN(0.007f, -726.93724f, -726.94424f);
1378
+ }
1379
+
1380
+ void testFloatsNotWithinDelta(void)
1381
+ {
1382
+ EXPECT_ABORT_BEGIN
1383
+ TEST_ASSERT_FLOAT_WITHIN(0.05f, 9273.2649f, 9273.2049f);
1384
+ VERIFY_FAILS_END
1385
+ }
1386
+
1387
+ void testFloatsEqual(void)
1388
+ {
1389
+ TEST_ASSERT_EQUAL_FLOAT(187245.0f, 187246.0f);
1390
+ TEST_ASSERT_EQUAL_FLOAT(18724.5f, 18724.6f);
1391
+ TEST_ASSERT_EQUAL_FLOAT(9273.2549f, 9273.2599f);
1392
+ TEST_ASSERT_EQUAL_FLOAT(-726.93724f, -726.9374f);
1393
+ }
1394
+
1395
+ void testFloatsNotEqual(void)
1396
+ {
1397
+ EXPECT_ABORT_BEGIN
1398
+ TEST_ASSERT_EQUAL_FLOAT(9273.9649f, 9273.0049f);
1399
+ VERIFY_FAILS_END
1400
+ }
1401
+
1402
+ void testFloatsNotEqualNegative1(void)
1403
+ {
1404
+ EXPECT_ABORT_BEGIN
1405
+ TEST_ASSERT_EQUAL_FLOAT(-9273.9649f, -9273.0049f);
1406
+ VERIFY_FAILS_END
1407
+ }
1408
+
1409
+ void testFloatsNotEqualNegative2(void)
1410
+ {
1411
+ EXPECT_ABORT_BEGIN
1412
+ TEST_ASSERT_EQUAL_FLOAT(-9273.0049f, -9273.9649f);
1413
+ VERIFY_FAILS_END
1414
+ }
1415
+
1416
+ void testEqualFloatArrays(void)
1417
+ {
1418
+ float p0[] = {1.0, -8.0, 25.4, -0.123};
1419
+ float p1[] = {1.0, -8.0, 25.4, -0.123};
1420
+ float p2[] = {1.0, -8.0, 25.4, -0.2};
1421
+ float p3[] = {1.0, -23.0, 25.0, -0.26};
1422
+
1423
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p0, 1);
1424
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p0, 4);
1425
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1426
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p2, 3);
1427
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p3, 1);
1428
+ }
1429
+
1430
+ void testNotEqualFloatArraysExpectedNull(void)
1431
+ {
1432
+ float* p0 = NULL;
1433
+ float p1[] = {1.0, 8.0, 25.4, 0.252};
1434
+
1435
+ EXPECT_ABORT_BEGIN
1436
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1437
+ VERIFY_FAILS_END
1438
+ }
1439
+
1440
+ void testNotEqualFloatArraysActualNull(void)
1441
+ {
1442
+ float p0[] = {1.0, 8.0, 25.4, 0.253};
1443
+ float* p1 = NULL;
1444
+
1445
+ EXPECT_ABORT_BEGIN
1446
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1447
+ VERIFY_FAILS_END
1448
+ }
1449
+
1450
+ void testNotEqualFloatArrays1(void)
1451
+ {
1452
+ float p0[] = {1.0, 8.0, 25.4, 0.253};
1453
+ float p1[] = {1.0, 8.0, 25.4, 0.252};
1454
+
1455
+ EXPECT_ABORT_BEGIN
1456
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1457
+ VERIFY_FAILS_END
1458
+ }
1459
+
1460
+ void testNotEqualFloatArrays2(void)
1461
+ {
1462
+ float p0[] = {1.0, 8.0, 25.4, 0.253};
1463
+ float p1[] = {2.0, 8.0, 25.4, 0.253};
1464
+
1465
+ EXPECT_ABORT_BEGIN
1466
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1467
+ VERIFY_FAILS_END
1468
+ }
1469
+
1470
+ void testNotEqualFloatArrays3(void)
1471
+ {
1472
+ float p0[] = {1.0, 8.0, 25.4, 0.253};
1473
+ float p1[] = {1.0, 8.0, 25.5, 0.253};
1474
+
1475
+ EXPECT_ABORT_BEGIN
1476
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1477
+ VERIFY_FAILS_END
1478
+ }
1479
+
1480
+ void testNotEqualFloatArraysNegative1(void)
1481
+ {
1482
+ float p0[] = {-1.0, -8.0, -25.4, -0.253};
1483
+ float p1[] = {-1.0, -8.0, -25.4, -0.252};
1484
+
1485
+ EXPECT_ABORT_BEGIN
1486
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1487
+ VERIFY_FAILS_END
1488
+ }
1489
+
1490
+ void testNotEqualFloatArraysNegative2(void)
1491
+ {
1492
+ float p0[] = {-1.0, -8.0, -25.4, -0.253};
1493
+ float p1[] = {-2.0, -8.0, -25.4, -0.253};
1494
+
1495
+ EXPECT_ABORT_BEGIN
1496
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1497
+ VERIFY_FAILS_END
1498
+ }
1499
+
1500
+ void testNotEqualFloatArraysNegative3(void)
1501
+ {
1502
+ float p0[] = {-1.0, -8.0, -25.4, -0.253};
1503
+ float p1[] = {-1.0, -8.0, -25.5, -0.253};
1504
+
1505
+ EXPECT_ABORT_BEGIN
1506
+ TEST_ASSERT_EQUAL_FLOAT_ARRAY(p0, p1, 4);
1507
+ VERIFY_FAILS_END
1508
+ }
1509
+
1510
+ #endif //FLOAT SUPPORT