ceedling 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +4 -0
- data/.vim +1 -0
- data/Gemfile +3 -0
- data/LICENSE +19 -0
- data/Rakefile +18 -0
- data/bin/ceedling +39 -0
- data/ceedling.gemspec +23 -0
- data/lib/ceedling/version.rb +10 -0
- data/lib/ceedling/version.rb.erb +10 -0
- data/lib/ceedling.rb +5 -0
- data/new_project_template/build/.gitkeep +0 -0
- data/new_project_template/project.yml +65 -0
- data/new_project_template/rakefile.rb +4 -0
- data/new_project_template/src/.gitkeep +0 -0
- data/new_project_template/test/.gitkeep +0 -0
- data/new_project_template/test/support/.gitkeep +0 -0
- data/new_project_template/vendor/ceedling/config/test_environment.rb +12 -0
- data/new_project_template/vendor/ceedling/docs/Ceedling Packet.odt +0 -0
- data/new_project_template/vendor/ceedling/docs/Ceedling Packet.pdf +0 -0
- data/new_project_template/vendor/ceedling/docs/CeedlingLogo.png +0 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/gcc.yml +42 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v4.yml +91 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v5.yml +80 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/project.yml +65 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/rakefile.rb +5 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.c +42 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.h +13 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardware.c +27 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardware.h +11 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardwareConfigurator.c +18 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcHardwareConfigurator.h +10 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcModel.c +33 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcModel.h +13 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcTemperatureSensor.c +51 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcTemperatureSensor.h +10 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Executor.c +25 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Executor.h +9 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/IntrinsicsWrapper.c +18 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/IntrinsicsWrapper.h +7 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Main.c +46 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Main.h +7 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Model.c +10 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Model.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/ModelConfig.h +7 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TaskScheduler.c +72 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TaskScheduler.h +11 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.c +27 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureFilter.c +39 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureFilter.h +10 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConductor.c +15 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConductor.h +9 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConfigurator.c +51 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerConfigurator.h +15 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerHardware.c +15 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerHardware.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptConfigurator.c +55 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptConfigurator.h +13 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptHandler.c +25 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerInterruptHandler.h +10 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerModel.c +9 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TimerModel.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Types.h +90 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c +18 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConductor.c +21 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConductor.h +7 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConfigurator.c +39 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartConfigurator.h +13 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartHardware.c +22 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartHardware.h +9 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartModel.c +34 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartModel.h +10 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartPutChar.c +16 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartPutChar.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartTransmitBufferStatus.c +7 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartTransmitBufferStatus.h +8 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcConductor.c +121 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcHardware.c +44 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcModel.c +33 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestExecutor.c +36 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestMain.c +24 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestModel.c +20 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTaskScheduler.c +104 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureCalculator.c +33 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureFilter.c +69 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerConductor.c +32 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerHardware.c +26 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerModel.c +18 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c +21 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartConductor.c +40 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartHardware.c +36 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartModel.c +40 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.c +12 -0
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.h +8 -0
- data/new_project_template/vendor/ceedling/lib/cacheinator.rb +42 -0
- data/new_project_template/vendor/ceedling/lib/cacheinator_helper.rb +12 -0
- data/new_project_template/vendor/ceedling/lib/cmock_builder.rb +15 -0
- data/new_project_template/vendor/ceedling/lib/configurator.rb +254 -0
- data/new_project_template/vendor/ceedling/lib/configurator_builder.rb +408 -0
- data/new_project_template/vendor/ceedling/lib/configurator_plugins.rb +96 -0
- data/new_project_template/vendor/ceedling/lib/configurator_setup.rb +114 -0
- data/new_project_template/vendor/ceedling/lib/configurator_validator.rb +154 -0
- data/new_project_template/vendor/ceedling/lib/constants.rb +66 -0
- data/new_project_template/vendor/ceedling/lib/defaults.rb +349 -0
- data/new_project_template/vendor/ceedling/lib/dependinator.rb +92 -0
- data/new_project_template/vendor/ceedling/lib/file_finder.rb +132 -0
- data/new_project_template/vendor/ceedling/lib/file_finder_helper.rb +54 -0
- data/new_project_template/vendor/ceedling/lib/file_path_utils.rb +177 -0
- data/new_project_template/vendor/ceedling/lib/file_system_utils.rb +59 -0
- data/new_project_template/vendor/ceedling/lib/file_wrapper.rb +74 -0
- data/new_project_template/vendor/ceedling/lib/generator.rb +131 -0
- data/new_project_template/vendor/ceedling/lib/generator_test_results.rb +90 -0
- data/new_project_template/vendor/ceedling/lib/generator_test_results_sanity_checker.rb +62 -0
- data/new_project_template/vendor/ceedling/lib/generator_test_runner.rb +206 -0
- data/new_project_template/vendor/ceedling/lib/loginator.rb +31 -0
- data/new_project_template/vendor/ceedling/lib/makefile.rb +46 -0
- data/new_project_template/vendor/ceedling/lib/objects.yml +278 -0
- data/new_project_template/vendor/ceedling/lib/plugin.rb +63 -0
- data/new_project_template/vendor/ceedling/lib/plugin_manager.rb +85 -0
- data/new_project_template/vendor/ceedling/lib/plugin_manager_helper.rb +19 -0
- data/new_project_template/vendor/ceedling/lib/plugin_reportinator.rb +75 -0
- data/new_project_template/vendor/ceedling/lib/plugin_reportinator_helper.rb +52 -0
- data/new_project_template/vendor/ceedling/lib/preprocessinator.rb +43 -0
- data/new_project_template/vendor/ceedling/lib/preprocessinator_extractor.rb +27 -0
- data/new_project_template/vendor/ceedling/lib/preprocessinator_file_handler.rb +21 -0
- data/new_project_template/vendor/ceedling/lib/preprocessinator_helper.rb +46 -0
- data/new_project_template/vendor/ceedling/lib/preprocessinator_includes_handler.rb +55 -0
- data/new_project_template/vendor/ceedling/lib/project_config_manager.rb +38 -0
- data/new_project_template/vendor/ceedling/lib/project_file_loader.rb +64 -0
- data/new_project_template/vendor/ceedling/lib/rake_utils.rb +17 -0
- data/new_project_template/vendor/ceedling/lib/rake_wrapper.rb +31 -0
- data/new_project_template/vendor/ceedling/lib/rakefile.rb +60 -0
- data/new_project_template/vendor/ceedling/lib/release_invoker.rb +29 -0
- data/new_project_template/vendor/ceedling/lib/release_invoker_helper.rb +16 -0
- data/new_project_template/vendor/ceedling/lib/reportinator.rb +9 -0
- data/new_project_template/vendor/ceedling/lib/rules_cmock.rake +9 -0
- data/new_project_template/vendor/ceedling/lib/rules_preprocess.rake +26 -0
- data/new_project_template/vendor/ceedling/lib/rules_release.rake +63 -0
- data/new_project_template/vendor/ceedling/lib/rules_release_aux_dependencies.rake +15 -0
- data/new_project_template/vendor/ceedling/lib/rules_tests.rake +49 -0
- data/new_project_template/vendor/ceedling/lib/rules_tests_aux_dependencies.rake +15 -0
- data/new_project_template/vendor/ceedling/lib/setupinator.rb +45 -0
- data/new_project_template/vendor/ceedling/lib/stream_wrapper.rb +20 -0
- data/new_project_template/vendor/ceedling/lib/streaminator.rb +41 -0
- data/new_project_template/vendor/ceedling/lib/streaminator_helper.rb +15 -0
- data/new_project_template/vendor/ceedling/lib/system_wrapper.rb +67 -0
- data/new_project_template/vendor/ceedling/lib/task_invoker.rb +85 -0
- data/new_project_template/vendor/ceedling/lib/tasks_base.rake +104 -0
- data/new_project_template/vendor/ceedling/lib/tasks_filesystem.rake +89 -0
- data/new_project_template/vendor/ceedling/lib/tasks_release.rake +22 -0
- data/new_project_template/vendor/ceedling/lib/tasks_tests.rake +49 -0
- data/new_project_template/vendor/ceedling/lib/tasks_vendor.rake +36 -0
- data/new_project_template/vendor/ceedling/lib/test_includes_extractor.rb +81 -0
- data/new_project_template/vendor/ceedling/lib/test_invoker.rb +72 -0
- data/new_project_template/vendor/ceedling/lib/test_invoker_helper.rb +41 -0
- data/new_project_template/vendor/ceedling/lib/tool_executor.rb +178 -0
- data/new_project_template/vendor/ceedling/lib/tool_executor_helper.rb +57 -0
- data/new_project_template/vendor/ceedling/lib/verbosinator.rb +10 -0
- data/new_project_template/vendor/ceedling/lib/yaml_wrapper.rb +16 -0
- data/new_project_template/vendor/ceedling/plugins/stdout_ide_tests_report/stdout_ide_tests_report.rb +44 -0
- data/new_project_template/vendor/ceedling/plugins/stdout_ide_tests_report/stdout_ide_tests_report.yml +4 -0
- data/new_project_template/vendor/ceedling/plugins/stdout_pretty_tests_report/stdout_pretty_tests_report.rb +108 -0
- data/new_project_template/vendor/ceedling/plugins/stdout_pretty_tests_report/stdout_pretty_tests_report.yml +4 -0
- data/new_project_template/vendor/ceedling/plugins/xml_tests_report/xml_tests_report.rb +106 -0
- data/new_project_template/vendor/ceedling/rakefile.rb +59 -0
- data/new_project_template/vendor/ceedling/rakefile_helper.rb +23 -0
- data/new_project_template/vendor/ceedling/release/build.info +1 -0
- data/new_project_template/vendor/ceedling/release/version.info +1 -0
- data/new_project_template/vendor/ceedling/test/integration/paths.yml +17 -0
- data/new_project_template/vendor/ceedling/test/integration/paths_test.rb +80 -0
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_aux_dependencies_test.rb +75 -0
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_cmock_test.rb +74 -0
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_preprocess_test.rb +178 -0
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_test.rb +268 -0
- data/new_project_template/vendor/ceedling/test/integration/rake_tasks_test.rb +103 -0
- data/new_project_template/vendor/ceedling/test/integration_test_helper.rb +34 -0
- data/new_project_template/vendor/ceedling/test/rakefile_rules.rb +10 -0
- data/new_project_template/vendor/ceedling/test/rakefile_rules_aux_dependencies.rb +10 -0
- data/new_project_template/vendor/ceedling/test/rakefile_rules_cmock.rb +10 -0
- data/new_project_template/vendor/ceedling/test/rakefile_rules_preprocess.rb +10 -0
- data/new_project_template/vendor/ceedling/test/rakefile_tasks.rb +10 -0
- data/new_project_template/vendor/ceedling/test/system/file_system_dependencies.yml +20 -0
- data/new_project_template/vendor/ceedling/test/system/file_system_kitchen_sink.yml +20 -0
- data/new_project_template/vendor/ceedling/test/system/file_system_mocks.yml +20 -0
- data/new_project_template/vendor/ceedling/test/system/file_system_preprocess.yml +20 -0
- data/new_project_template/vendor/ceedling/test/system/file_system_simple.yml +20 -0
- data/new_project_template/vendor/ceedling/test/system/file_system_test.rb +78 -0
- data/new_project_template/vendor/ceedling/test/system/mocks/include/a_file.h +2 -0
- data/new_project_template/vendor/ceedling/test/system/mocks/include/other_stuff.h +2 -0
- data/new_project_template/vendor/ceedling/test/system/mocks/include/stuff.h +3 -0
- data/new_project_template/vendor/ceedling/test/system/mocks/source/a_file.c +9 -0
- data/new_project_template/vendor/ceedling/test/system/mocks/test/test_a_file.c +41 -0
- data/new_project_template/vendor/ceedling/test/system/mocks/test/test_no_file.c +14 -0
- data/new_project_template/vendor/ceedling/test/system/project_mocks.yml +43 -0
- data/new_project_template/vendor/ceedling/test/system/project_mocks_test.rb +38 -0
- data/new_project_template/vendor/ceedling/test/system/project_simple.yml +36 -0
- data/new_project_template/vendor/ceedling/test/system/project_simple_test.rb +39 -0
- data/new_project_template/vendor/ceedling/test/system/rule_mocks_test.rb +44 -0
- data/new_project_template/vendor/ceedling/test/system/rule_runners_test.rb +44 -0
- data/new_project_template/vendor/ceedling/test/system/simple/include/other_stuff.h +2 -0
- data/new_project_template/vendor/ceedling/test/system/simple/include/stuff.h +3 -0
- data/new_project_template/vendor/ceedling/test/system/simple/source/other_stuff.c +6 -0
- data/new_project_template/vendor/ceedling/test/system/simple/source/stuff.c +7 -0
- data/new_project_template/vendor/ceedling/test/system/simple/test/test_other_stuff.c +30 -0
- data/new_project_template/vendor/ceedling/test/system/simple/test/test_stuff.c +51 -0
- data/new_project_template/vendor/ceedling/test/system_test_helper.rb +73 -0
- data/new_project_template/vendor/ceedling/test/test_helper.rb +93 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_builder_test.rb +571 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_helper_test.rb +234 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_test.rb +232 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_validator_test.rb +169 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/deep_merge_fix_test.rb +55 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/dependinator_test.rb +129 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_helper_test.rb +45 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_test.rb +114 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/file_path_utils_test.rb +97 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/file_system_utils_test.rb +21 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test.rb +187 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_results_test.rb +129 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_runner_test.rb +478 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_extractor_test.rb +729 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_file_handler_test.rb +38 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_helper_test.rb +156 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_includes_handler_test.rb +93 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_test.rb +57 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/project_file_loader_test.rb +142 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/setupinator_test.rb +45 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/streaminator_test.rb +49 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/task_invoker_test.rb +69 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/test_includes_extractor_test.rb +111 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_helper_test.rb +62 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_test.rb +47 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_helper_test.rb +100 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_test.rb +351 -0
- data/new_project_template/vendor/ceedling/test/unit/busted/verbosinator_test.rb +65 -0
- data/new_project_template/vendor/ceedling/test/unit_test_helper.rb +16 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/Manifest.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/Rakefile +19 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors.rb +76 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_test.rb +50 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/Rakefile +19 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/docs/license.txt +30 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/docs/readme.txt +236 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/lib/CException.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/lib/CException.h +70 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/makefile +24 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/rakefile.rb +41 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/CExceptionConfig.h +27 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException.c +291 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException_Runner.c +62 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +303 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +126 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/makefile +40 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +260 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +26 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/makefile +35 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile.rb +48 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile_helper.rb +243 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.c +856 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.h +213 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity_internals.h +355 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc.yml +42 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc_64.yml +43 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testunity.c +1510 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/config/production_environment.rb +14 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/config/test_environment.rb +16 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/docs/CMock Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/docs/CMock Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/docs/license.txt +31 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/gcc.yml +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v4.yml +91 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v5.yml +80 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile.rb +32 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile_helper.rb +274 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AT91SAM7X256.h +2556 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.c +42 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.h +11 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.c +27 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.h +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.c +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.h +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.c +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.h +13 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.h +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.c +25 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.h +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.c +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.h +7 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.c +46 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.h +7 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.c +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.h +8 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/ModelConfig.h +7 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.c +72 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.h +11 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.c +27 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.h +6 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.h +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.c +15 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.h +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.h +15 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.c +15 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.h +8 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.c +55 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.h +13 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.c +25 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.h +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.c +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.h +8 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Types.h +103 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.h +6 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.c +21 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.h +7 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.h +13 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.c +22 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.h +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.c +34 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.h +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.c +16 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.h +8 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +7 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +8 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcConductor.c +121 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardware.c +44 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcModel.c +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcTemperatureSensor.c +47 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestExecutor.c +36 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestMain.c +24 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestModel.c +20 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTaskScheduler.c +104 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureCalculator.c +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureFilter.c +69 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConductor.c +32 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConfigurator.c +112 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerHardware.c +26 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c +78 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptHandler.c +66 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerModel.c +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +21 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConductor.c +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConfigurator.c +77 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartHardware.c +37 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartModel.c +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartPutChar.c +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c +22 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +71 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +67 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +185 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +185 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +2259 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.dep +3691 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewd +1696 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewp +2581 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.eww +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +61 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +2314 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +4704 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +3407 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +2268 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +4380 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +4211 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +32 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +86 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +42 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +76 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +266 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +98 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +71 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +67 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +42 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.dep +4204 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewd +1906 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewp +2426 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.eww +26 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +61 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +2268 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +4211 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/project.h +30 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +5 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +74 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +44 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +73 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +299 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +98 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock.rb +65 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_config.rb +123 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_file_writer.rb +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator.rb +196 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_array.rb +57 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_callback.rb +78 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_expect.rb +86 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_generator_utils.rb +177 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_header_parser.rb +270 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_plugin_manager.rb +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/lib/cmock_unityhelper_parser.rb +74 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/rakefile.rb +89 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/rakefile_helper.rb +383 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/src/cmock.c +186 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/src/cmock.h +30 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc.yml +50 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_32_with_64_support.yml +52 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_64.yml +53 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v4.yml +107 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v5.yml +92 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.c +280 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.yml +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.c +186 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.yml +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +35 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC_Runner.c +37 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/systest_generator.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/config.yml +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/const.h +15 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/osek.h +275 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h +47 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +340 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +381 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +382 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +123 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +87 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +247 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +108 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +173 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +170 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +208 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +82 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +153 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +52 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +91 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +59 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +222 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +277 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +221 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +82 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_ignores.yml +139 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/test_helper.rb +44 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.rb +45 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.yml +5 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_file_writer_test.rb +30 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_main_test.rb +412 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +114 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +190 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +206 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +159 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_utils_test.rb +291 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_header_parser_test.rb +1170 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +223 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Manifest.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Rakefile +19 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +158 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors.rb +76 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +73 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +50 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +19 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +17 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/CExceptionSummary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/license.txt +30 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/readme.txt +236 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.h +70 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/makefile +24 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/rakefile.rb +41 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +27 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException.c +291 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +62 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +36 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +202 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +303 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +23 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +126 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/Unity Summary.txt +217 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +31 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/makefile +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile.rb +32 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +260 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/readme.txt +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +26 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/makefile +35 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile.rb +48 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile_helper.rb +243 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +856 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +213 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +355 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc.yml +42 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_64.yml +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testparameterized.c +101 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testunity.c +1510 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/CHANGES +78 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/LICENSE +7 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/README +70 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/Rakefile +8 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/config/environment.rb +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/assert_error.rb +23 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +14 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +22 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +26 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +180 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock.rb +86 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +22 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/test_helper.rb +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +372 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +57 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +279 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +62 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_prompt.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_reporter.rb +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_config.yml +36 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_module.rb +202 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +303 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/test_file_filter.rb +23 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +126 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/Unity Summary.txt +217 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/license.txt +31 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/makefile +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile.rb +32 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +260 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/readme.txt +18 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +26 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/readme.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/makefile +35 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile.rb +48 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile_helper.rb +243 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.c +856 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.h +213 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity_internals.h +355 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc.yml +42 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc_64.yml +43 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_msp430.yml +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/mocksample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/sample.yml +9 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/testsample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testparameterized.c +101 -0
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testunity.c +1510 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/History.rdoc +19 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/README.rdoc +72 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/Rakefile +33 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Notes.txt +27 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Rakefile +15 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.erb +27 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.html +36 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.graffle +0 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.html +9 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/page_header.png +0 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.png +0 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/sample_code.rb +12 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/lib/constructor.rb +127 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/lib/constructor_struct.rb +33 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_spec.rb +407 -0
- data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_struct_spec.rb +84 -0
- data/new_project_template/vendor/ceedling/vendor/deep_merge/MIT-LICENSE +20 -0
- data/new_project_template/vendor/ceedling/vendor/deep_merge/README +94 -0
- data/new_project_template/vendor/ceedling/vendor/deep_merge/Rakefile +28 -0
- data/new_project_template/vendor/ceedling/vendor/deep_merge/lib/deep_merge.rb +211 -0
- data/new_project_template/vendor/ceedling/vendor/deep_merge/test/test_deep_merge.rb +553 -0
- data/new_project_template/vendor/ceedling/vendor/diy/History.txt +28 -0
- data/new_project_template/vendor/ceedling/vendor/diy/README.rdoc +233 -0
- data/new_project_template/vendor/ceedling/vendor/diy/Rakefile +33 -0
- data/new_project_template/vendor/ceedling/vendor/diy/TODO.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/diy/diy.gemspec +131 -0
- data/new_project_template/vendor/ceedling/vendor/diy/lib/diy/factory.rb +36 -0
- data/new_project_template/vendor/ceedling/vendor/diy/lib/diy.rb +403 -0
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/car.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/chassis.rb +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/diy_example.rb +26 -0
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/engine.rb +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/objects.yml +10 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/constructor.rb +119 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/diy_test.rb +608 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/factory_test.rb +79 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/broken_construction.yml +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/cat.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/extra_conflict.yml +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/heritage.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/needs_input.yml +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/the_cat_lineage.rb +1 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_model.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_presenter.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_view.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/file_resolver.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/other_thing.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/simple.yml +11 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo/bar/qux.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo.rb +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/beef.rb +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/dog.rb +6 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/factory.yml +19 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/llama.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/pork.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/kitten.rb +13 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/objects.yml +13 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/toy.rb +14 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/attached_things_builder.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/invalid_method.yml +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/method_extractor.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/nonsingleton_objects.yml +6 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/objects.yml +22 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing_builder.rb +25 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/things_builder.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/objects.yml +14 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/thinger.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/base.rb +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/can.rb +6 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/goat.rb +6 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/objects.yml +12 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/paper.rb +6 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/plane.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/shirt.rb +6 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/wings.rb +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/holder_thing.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/objects.yml +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/bird.rb +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/cat.rb +5 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/lizard.rb +7 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/bad_module_specified.yml +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/class_name_combine.yml +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/hello.txt +1 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/no_module_specified.yml +8 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/objects.yml +21 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/road.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/sky.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/subcontext.yml +22 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/air.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/fat_cat.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/objects.yml +19 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/pig.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/thread_spinner.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/tick.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/yard.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_model.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_presenter.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_view.rb +1 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/data_source.rb +1 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_model.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_presenter.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_view.rb +1 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/giant_squid.rb +3 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/krill.rb +2 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/my_objects.yml +21 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/sub_sub_context_test.yml +27 -0
- data/new_project_template/vendor/ceedling/vendor/diy/test/test_helper.rb +55 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/CHANGES +78 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/LICENSE +7 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/README +70 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/Rakefile +8 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/config/environment.rb +12 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/assert_error.rb +23 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/extend_test_unit.rb +14 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/errors.rb +22 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation.rb +229 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation_builder.rb +9 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expector.rb +26 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/method_cleanout.rb +33 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock.rb +180 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock_control.rb +53 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/stubbing.rb +210 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/trapper.rb +31 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/utils.rb +9 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock.rb +86 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/test_unit_before_after.rb +169 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc.rake +19 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc_options.rb +4 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/test.rake +22 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/assert_error_test.rb +52 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/auto_verify_test.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/direct_mock_usage_test.rb +396 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/hardmock_test.rb +434 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/stubbing_test.rb +479 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/test_helper.rb +43 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_builder_test.rb +19 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_test.rb +372 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expector_test.rb +57 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/method_cleanout_test.rb +36 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_control_test.rb +175 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_test.rb +279 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/test_unit_before_after_test.rb +452 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/trapper_test.rb +62 -0
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/verify_error_test.rb +40 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_prompt.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_reporter.rb +39 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_config.yml +36 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_module.rb +202 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_test_runner.rb +303 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/test_file_filter.rb +23 -0
- data/new_project_template/vendor/ceedling/vendor/unity/auto/unity_test_summary.rb +126 -0
- data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.odt +0 -0
- data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.pdf +0 -0
- data/new_project_template/vendor/ceedling/vendor/unity/docs/Unity Summary.txt +217 -0
- data/new_project_template/vendor/ceedling/vendor/unity/docs/license.txt +31 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.c +10 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.h +12 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/makefile +40 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile.rb +32 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile_helper.rb +260 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/readme.txt +18 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.c +24 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.h +3 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.c +9 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.h +2 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode.c +62 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode2.c +26 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +46 -0
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/MakefileWorker.mk +331 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/filterGcov.sh +61 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile.rb +37 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile_helper.rb +178 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/readme.txt +9 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.c +381 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.h +81 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_internals.h +44 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +16 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/main/AllTests.c +21 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/testunity_fixture.c +39 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_Test.c +321 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +40 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.c +56 -0
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.h +17 -0
- data/new_project_template/vendor/ceedling/vendor/unity/makefile +35 -0
- data/new_project_template/vendor/ceedling/vendor/unity/rakefile.rb +48 -0
- data/new_project_template/vendor/ceedling/vendor/unity/rakefile_helper.rb +243 -0
- data/new_project_template/vendor/ceedling/vendor/unity/release/build.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/unity/release/version.info +2 -0
- data/new_project_template/vendor/ceedling/vendor/unity/src/unity.c +856 -0
- data/new_project_template/vendor/ceedling/vendor/unity/src/unity.h +213 -0
- data/new_project_template/vendor/ceedling/vendor/unity/src/unity_internals.h +355 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc.yml +42 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc_64.yml +43 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/hitech_picc18.yml +101 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v4.yml +89 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5_3.yml +79 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +93 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_cortexm3_v5.yml +83 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_msp430.yml +94 -0
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_sh2a_v6.yml +85 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_cmd.c +54 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_def.c +50 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_cmd.c +76 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_def.c +72 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_param.c +73 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run1.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run2.c +85 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_yaml.c +86 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_param.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run1.c +60 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run2.c +63 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_yaml.c +64 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/test_generate_test_runner.rb +94 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/mocksample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/sample.yml +9 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/testsample.c +51 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/testparameterized.c +101 -0
- data/new_project_template/vendor/ceedling/vendor/unity/test/testunity.c +1510 -0
- metadata +1058 -0
data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h
ADDED
@@ -0,0 +1,213 @@
|
|
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
|
+
#ifndef UNITY_FRAMEWORK_H
|
8
|
+
#define UNITY_FRAMEWORK_H
|
9
|
+
|
10
|
+
#define UNITY
|
11
|
+
|
12
|
+
#include "unity_internals.h"
|
13
|
+
|
14
|
+
//-------------------------------------------------------
|
15
|
+
// Configuration Options
|
16
|
+
//-------------------------------------------------------
|
17
|
+
|
18
|
+
// Integers
|
19
|
+
// - Unity assumes 32 bit integers by default
|
20
|
+
// - If your compiler treats ints of a different size, define UNITY_INT_WIDTH
|
21
|
+
|
22
|
+
// Floats
|
23
|
+
// - define UNITY_EXCLUDE_FLOAT to disallow floating point comparisons
|
24
|
+
// - define UNITY_FLOAT_PRECISION to specify the precision to use when doing TEST_ASSERT_EQUAL_FLOAT
|
25
|
+
// - define UNITY_FLOAT_TYPE to specify doubles instead of single precision floats
|
26
|
+
// - define UNITY_FLOAT_VERBOSE to print floating point values in errors (uses sprintf)
|
27
|
+
|
28
|
+
// Output
|
29
|
+
// - by default, Unity prints to standard out with putchar. define UNITY_OUTPUT_CHAR(a) with a different function if desired
|
30
|
+
|
31
|
+
// Optimization
|
32
|
+
// - by default, line numbers are stored in unsigned shorts. Define UNITY_LINE_TYPE with a different type if your files are huge
|
33
|
+
// - by default, test and failure counters are unsigned shorts. Define UNITY_COUNTER_TYPE with a different type if you want to save space or have more than 65535 Tests.
|
34
|
+
|
35
|
+
// Test Cases
|
36
|
+
// - define UNITY_SUPPORT_TEST_CASES to include the TEST_CASE macro, though really it's mostly about the runner generator script
|
37
|
+
|
38
|
+
// Parameterized Tests
|
39
|
+
// - you'll want to create a define of TEST_CASE(...) which basically evaluates to nothing
|
40
|
+
|
41
|
+
//-------------------------------------------------------
|
42
|
+
// Test Running Macros
|
43
|
+
//-------------------------------------------------------
|
44
|
+
|
45
|
+
#define TEST_PROTECT() (setjmp(Unity.AbortFrame) == 0)
|
46
|
+
|
47
|
+
#define TEST_ABORT() {longjmp(Unity.AbortFrame, 1);}
|
48
|
+
|
49
|
+
#ifndef RUN_TEST
|
50
|
+
#define RUN_TEST(func, line_num) UnityDefaultTestRun(func, #func, line_num)
|
51
|
+
#endif
|
52
|
+
|
53
|
+
#define TEST_LINE_NUM (Unity.CurrentTestLineNumber)
|
54
|
+
#define TEST_IS_IGNORED (Unity.CurrentTestIgnored)
|
55
|
+
|
56
|
+
//-------------------------------------------------------
|
57
|
+
// Basic Fail and Ignore
|
58
|
+
//-------------------------------------------------------
|
59
|
+
|
60
|
+
#define TEST_FAIL_MESSAGE(message) UNITY_TEST_FAIL(__LINE__, message)
|
61
|
+
#define TEST_FAIL() UNITY_TEST_FAIL(__LINE__, NULL)
|
62
|
+
#define TEST_IGNORE_MESSAGE(message) UNITY_TEST_IGNORE(__LINE__, message)
|
63
|
+
#define TEST_IGNORE() UNITY_TEST_IGNORE(__LINE__, NULL)
|
64
|
+
#define TEST_ONLY()
|
65
|
+
|
66
|
+
//-------------------------------------------------------
|
67
|
+
// Test Asserts (simple)
|
68
|
+
//-------------------------------------------------------
|
69
|
+
|
70
|
+
//Boolean
|
71
|
+
#define TEST_ASSERT(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expression Evaluated To FALSE")
|
72
|
+
#define TEST_ASSERT_TRUE(condition) UNITY_TEST_ASSERT( (condition), __LINE__, " Expected TRUE Was FALSE")
|
73
|
+
#define TEST_ASSERT_UNLESS(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expression Evaluated To TRUE")
|
74
|
+
#define TEST_ASSERT_FALSE(condition) UNITY_TEST_ASSERT( !(condition), __LINE__, " Expected FALSE Was TRUE")
|
75
|
+
#define TEST_ASSERT_NULL(pointer) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, " Expected NULL")
|
76
|
+
#define TEST_ASSERT_NOT_NULL(pointer) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, " Expected Non-NULL")
|
77
|
+
|
78
|
+
//Integers (of all sizes)
|
79
|
+
#define TEST_ASSERT_EQUAL_INT(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL)
|
80
|
+
#define TEST_ASSERT_EQUAL_INT8(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT8((expected), (actual), __LINE__, NULL)
|
81
|
+
#define TEST_ASSERT_EQUAL_INT16(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT16((expected), (actual), __LINE__, NULL)
|
82
|
+
#define TEST_ASSERT_EQUAL_INT32(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT32((expected), (actual), __LINE__, NULL)
|
83
|
+
#define TEST_ASSERT_EQUAL_INT64(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT64((expected), (actual), __LINE__, NULL)
|
84
|
+
#define TEST_ASSERT_EQUAL(expected, actual) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, NULL)
|
85
|
+
#define TEST_ASSERT_NOT_EQUAL(expected, actual) UNITY_TEST_ASSERT(((expected) != (actual)), __LINE__, " Expected Not-Equal")
|
86
|
+
#define TEST_ASSERT_EQUAL_UINT(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT( (expected), (actual), __LINE__, NULL)
|
87
|
+
#define TEST_ASSERT_EQUAL_UINT8(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT8( (expected), (actual), __LINE__, NULL)
|
88
|
+
#define TEST_ASSERT_EQUAL_UINT16(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT16( (expected), (actual), __LINE__, NULL)
|
89
|
+
#define TEST_ASSERT_EQUAL_UINT32(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT32( (expected), (actual), __LINE__, NULL)
|
90
|
+
#define TEST_ASSERT_EQUAL_UINT64(expected, actual) UNITY_TEST_ASSERT_EQUAL_UINT64( (expected), (actual), __LINE__, NULL)
|
91
|
+
#define TEST_ASSERT_EQUAL_HEX(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, NULL)
|
92
|
+
#define TEST_ASSERT_EQUAL_HEX8(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX8( (expected), (actual), __LINE__, NULL)
|
93
|
+
#define TEST_ASSERT_EQUAL_HEX16(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX16((expected), (actual), __LINE__, NULL)
|
94
|
+
#define TEST_ASSERT_EQUAL_HEX32(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, NULL)
|
95
|
+
#define TEST_ASSERT_EQUAL_HEX64(expected, actual) UNITY_TEST_ASSERT_EQUAL_HEX64((expected), (actual), __LINE__, NULL)
|
96
|
+
#define TEST_ASSERT_BITS(mask, expected, actual) UNITY_TEST_ASSERT_BITS((mask), (expected), (actual), __LINE__, NULL)
|
97
|
+
#define TEST_ASSERT_BITS_HIGH(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (_UU32)(-1), (actual), __LINE__, NULL)
|
98
|
+
#define TEST_ASSERT_BITS_LOW(mask, actual) UNITY_TEST_ASSERT_BITS((mask), (_UU32)(0), (actual), __LINE__, NULL)
|
99
|
+
#define TEST_ASSERT_BIT_HIGH(bit, actual) UNITY_TEST_ASSERT_BITS(((_UU32)1 << bit), (_UU32)(-1), (actual), __LINE__, NULL)
|
100
|
+
#define TEST_ASSERT_BIT_LOW(bit, actual) UNITY_TEST_ASSERT_BITS(((_UU32)1 << bit), (_UU32)(0), (actual), __LINE__, NULL)
|
101
|
+
|
102
|
+
//Integer Ranges (of all sizes)
|
103
|
+
#define TEST_ASSERT_INT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_INT_WITHIN(delta, expected, actual, __LINE__, NULL)
|
104
|
+
#define TEST_ASSERT_UINT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_UINT_WITHIN(delta, expected, actual, __LINE__, NULL)
|
105
|
+
#define TEST_ASSERT_HEX_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, __LINE__, NULL)
|
106
|
+
#define TEST_ASSERT_HEX8_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX8_WITHIN(delta, expected, actual, __LINE__, NULL)
|
107
|
+
#define TEST_ASSERT_HEX16_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX16_WITHIN(delta, expected, actual, __LINE__, NULL)
|
108
|
+
#define TEST_ASSERT_HEX32_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, __LINE__, NULL)
|
109
|
+
#define TEST_ASSERT_HEX64_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, __LINE__, NULL)
|
110
|
+
|
111
|
+
//Structs and Strings
|
112
|
+
#define TEST_ASSERT_EQUAL_PTR(expected, actual) UNITY_TEST_ASSERT_EQUAL_PTR((expected), (actual), __LINE__, NULL)
|
113
|
+
#define TEST_ASSERT_EQUAL_STRING(expected, actual) UNITY_TEST_ASSERT_EQUAL_STRING(expected, actual, __LINE__, NULL)
|
114
|
+
#define TEST_ASSERT_EQUAL_MEMORY(expected, actual, len) UNITY_TEST_ASSERT_EQUAL_MEMORY(expected, actual, len, __LINE__, NULL)
|
115
|
+
|
116
|
+
//Arrays
|
117
|
+
#define TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
118
|
+
#define TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
119
|
+
#define TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
120
|
+
#define TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
121
|
+
#define TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
122
|
+
#define TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
123
|
+
#define TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
124
|
+
#define TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
125
|
+
#define TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
126
|
+
#define TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
127
|
+
#define TEST_ASSERT_EQUAL_HEX_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
128
|
+
#define TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
129
|
+
#define TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
130
|
+
#define TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
131
|
+
#define TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
132
|
+
#define TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
133
|
+
#define TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements) UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements, __LINE__, NULL)
|
134
|
+
|
135
|
+
//Floating Point (If Enabled)
|
136
|
+
#define TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual) UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, __LINE__, NULL)
|
137
|
+
#define TEST_ASSERT_EQUAL_FLOAT(expected, actual) UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, __LINE__, NULL)
|
138
|
+
#define TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements) UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, __LINE__, NULL)
|
139
|
+
|
140
|
+
//-------------------------------------------------------
|
141
|
+
// Test Asserts (with additional messages)
|
142
|
+
//-------------------------------------------------------
|
143
|
+
|
144
|
+
//Boolean
|
145
|
+
#define TEST_ASSERT_MESSAGE(condition, message) UNITY_TEST_ASSERT( (condition), __LINE__, message)
|
146
|
+
#define TEST_ASSERT_TRUE_MESSAGE(condition, message) UNITY_TEST_ASSERT( (condition), __LINE__, message)
|
147
|
+
#define TEST_ASSERT_UNLESS_MESSAGE(condition, message) UNITY_TEST_ASSERT( !(condition), __LINE__, message)
|
148
|
+
#define TEST_ASSERT_FALSE_MESSAGE(condition, message) UNITY_TEST_ASSERT( !(condition), __LINE__, message)
|
149
|
+
#define TEST_ASSERT_NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NULL( (pointer), __LINE__, message)
|
150
|
+
#define TEST_ASSERT_NOT_NULL_MESSAGE(pointer, message) UNITY_TEST_ASSERT_NOT_NULL((pointer), __LINE__, message)
|
151
|
+
|
152
|
+
//Integers (of all sizes)
|
153
|
+
#define TEST_ASSERT_EQUAL_INT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, message)
|
154
|
+
#define TEST_ASSERT_EQUAL_INT8_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT8((expected), (actual), __LINE__, message)
|
155
|
+
#define TEST_ASSERT_EQUAL_INT16_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT16((expected), (actual), __LINE__, message)
|
156
|
+
#define TEST_ASSERT_EQUAL_INT32_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT32((expected), (actual), __LINE__, message)
|
157
|
+
#define TEST_ASSERT_EQUAL_INT64_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT64((expected), (actual), __LINE__, message)
|
158
|
+
#define TEST_ASSERT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_INT((expected), (actual), __LINE__, message)
|
159
|
+
#define TEST_ASSERT_NOT_EQUAL_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT(((expected) != (actual)), __LINE__, message)
|
160
|
+
#define TEST_ASSERT_EQUAL_UINT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT( (expected), (actual), __LINE__, message)
|
161
|
+
#define TEST_ASSERT_EQUAL_UINT8_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT8( (expected), (actual), __LINE__, message)
|
162
|
+
#define TEST_ASSERT_EQUAL_UINT16_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT16( (expected), (actual), __LINE__, message)
|
163
|
+
#define TEST_ASSERT_EQUAL_UINT32_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT32( (expected), (actual), __LINE__, message)
|
164
|
+
#define TEST_ASSERT_EQUAL_UINT64_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_UINT64( (expected), (actual), __LINE__, message)
|
165
|
+
#define TEST_ASSERT_EQUAL_HEX_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, message)
|
166
|
+
#define TEST_ASSERT_EQUAL_HEX8_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX8( (expected), (actual), __LINE__, message)
|
167
|
+
#define TEST_ASSERT_EQUAL_HEX16_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX16((expected), (actual), __LINE__, message)
|
168
|
+
#define TEST_ASSERT_EQUAL_HEX32_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX32((expected), (actual), __LINE__, message)
|
169
|
+
#define TEST_ASSERT_EQUAL_HEX64_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_HEX64((expected), (actual), __LINE__, message)
|
170
|
+
#define TEST_ASSERT_BITS_MESSAGE(mask, expected, actual, message) UNITY_TEST_ASSERT_BITS((mask), (expected), (actual), __LINE__, message)
|
171
|
+
#define TEST_ASSERT_BITS_HIGH_MESSAGE(mask, actual, message) UNITY_TEST_ASSERT_BITS((mask), (_UU32)(-1), (actual), __LINE__, message)
|
172
|
+
#define TEST_ASSERT_BITS_LOW_MESSAGE(mask, actual, message) UNITY_TEST_ASSERT_BITS((mask), (_UU32)(0), (actual), __LINE__, message)
|
173
|
+
#define TEST_ASSERT_BIT_HIGH_MESSAGE(bit, actual, message) UNITY_TEST_ASSERT_BITS(((_UU32)1 << bit), (_UU32)(-1), (actual), __LINE__, message)
|
174
|
+
#define TEST_ASSERT_BIT_LOW_MESSAGE(bit, actual, message) UNITY_TEST_ASSERT_BITS(((_UU32)1 << bit), (_UU32)(0), (actual), __LINE__, message)
|
175
|
+
|
176
|
+
//Integer Ranges (of all sizes)
|
177
|
+
#define TEST_ASSERT_INT_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_INT_WITHIN(delta, expected, actual, __LINE__, message)
|
178
|
+
#define TEST_ASSERT_UINT_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_UINT_WITHIN(delta, expected, actual, __LINE__, message)
|
179
|
+
#define TEST_ASSERT_HEX_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, __LINE__, message)
|
180
|
+
#define TEST_ASSERT_HEX8_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX8_WITHIN(delta, expected, actual, __LINE__, message)
|
181
|
+
#define TEST_ASSERT_HEX16_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX16_WITHIN(delta, expected, actual, __LINE__, message)
|
182
|
+
#define TEST_ASSERT_HEX32_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, __LINE__, message)
|
183
|
+
#define TEST_ASSERT_HEX64_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, __LINE__, message)
|
184
|
+
|
185
|
+
//Structs and Strings
|
186
|
+
#define TEST_ASSERT_EQUAL_PTR_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_PTR(expected, actual, __LINE__, message)
|
187
|
+
#define TEST_ASSERT_EQUAL_STRING_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_STRING(expected, actual, __LINE__, message)
|
188
|
+
#define TEST_ASSERT_EQUAL_MEMORY_MESSAGE(expected, actual, len, message) UNITY_TEST_ASSERT_EQUAL_MEMORY(expected, actual, len, __LINE__, message)
|
189
|
+
|
190
|
+
//Arrays
|
191
|
+
#define TEST_ASSERT_EQUAL_INT_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements, __LINE__, message)
|
192
|
+
#define TEST_ASSERT_EQUAL_INT8_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements, __LINE__, message)
|
193
|
+
#define TEST_ASSERT_EQUAL_INT16_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements, __LINE__, message)
|
194
|
+
#define TEST_ASSERT_EQUAL_INT32_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements, __LINE__, message)
|
195
|
+
#define TEST_ASSERT_EQUAL_INT64_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, __LINE__, message)
|
196
|
+
#define TEST_ASSERT_EQUAL_UINT_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements, __LINE__, message)
|
197
|
+
#define TEST_ASSERT_EQUAL_UINT8_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements, __LINE__, message)
|
198
|
+
#define TEST_ASSERT_EQUAL_UINT16_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements, __LINE__, message)
|
199
|
+
#define TEST_ASSERT_EQUAL_UINT32_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements, __LINE__, message)
|
200
|
+
#define TEST_ASSERT_EQUAL_UINT64_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, __LINE__, message)
|
201
|
+
#define TEST_ASSERT_EQUAL_HEX_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, __LINE__, message)
|
202
|
+
#define TEST_ASSERT_EQUAL_HEX8_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements, __LINE__, message)
|
203
|
+
#define TEST_ASSERT_EQUAL_HEX16_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements, __LINE__, message)
|
204
|
+
#define TEST_ASSERT_EQUAL_HEX32_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, __LINE__, message)
|
205
|
+
#define TEST_ASSERT_EQUAL_HEX64_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, __LINE__, message)
|
206
|
+
#define TEST_ASSERT_EQUAL_STRING_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements, __LINE__, message)
|
207
|
+
#define TEST_ASSERT_EQUAL_MEMORY_ARRAY_MESSAGE(expected, actual, len, num_elements, message) UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements, __LINE__, message)
|
208
|
+
|
209
|
+
//Floating Point (If Enabled)
|
210
|
+
#define TEST_ASSERT_FLOAT_WITHIN_MESSAGE(delta, expected, actual, message) UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, __LINE__, message)
|
211
|
+
#define TEST_ASSERT_EQUAL_FLOAT_MESSAGE(expected, actual, message) UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, __LINE__, message)
|
212
|
+
#define TEST_ASSERT_EQUAL_FLOAT_ARRAY_MESSAGE(expected, actual, num_elements, message) UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, __LINE__, message)
|
213
|
+
#endif
|
@@ -0,0 +1,355 @@
|
|
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
|
+
#ifndef UNITY_INTERNALS_H
|
8
|
+
#define UNITY_INTERNALS_H
|
9
|
+
|
10
|
+
#include <stdio.h>
|
11
|
+
#include <setjmp.h>
|
12
|
+
|
13
|
+
//-------------------------------------------------------
|
14
|
+
// Int Support
|
15
|
+
//-------------------------------------------------------
|
16
|
+
|
17
|
+
#ifndef UNITY_INT_WIDTH
|
18
|
+
#define UNITY_INT_WIDTH (32)
|
19
|
+
#endif
|
20
|
+
|
21
|
+
#ifndef UNITY_LONG_WIDTH
|
22
|
+
#define UNITY_LONG_WIDTH (32)
|
23
|
+
#endif
|
24
|
+
|
25
|
+
#if (UNITY_INT_WIDTH == 32)
|
26
|
+
typedef unsigned char _UU8;
|
27
|
+
typedef unsigned short _UU16;
|
28
|
+
typedef unsigned int _UU32;
|
29
|
+
typedef signed char _US8;
|
30
|
+
typedef signed short _US16;
|
31
|
+
typedef signed int _US32;
|
32
|
+
#elif (UNITY_INT_WIDTH == 16)
|
33
|
+
typedef unsigned char _UU8;
|
34
|
+
typedef unsigned int _UU16;
|
35
|
+
typedef unsigned long _UU32;
|
36
|
+
typedef signed char _US8;
|
37
|
+
typedef signed int _US16;
|
38
|
+
typedef signed long _US32;
|
39
|
+
#else
|
40
|
+
#error Invalid UNITY_INT_WIDTH specified! (16 or 32 are supported)
|
41
|
+
#endif
|
42
|
+
|
43
|
+
//-------------------------------------------------------
|
44
|
+
// 64-bit Support
|
45
|
+
//-------------------------------------------------------
|
46
|
+
|
47
|
+
#ifndef UNITY_SUPPORT_64
|
48
|
+
|
49
|
+
//No 64-bit Support
|
50
|
+
typedef _UU32 _U_UINT;
|
51
|
+
typedef _US32 _U_SINT;
|
52
|
+
|
53
|
+
#else
|
54
|
+
|
55
|
+
//64-bit Support
|
56
|
+
#if (UNITY_LONG_WIDTH == 32)
|
57
|
+
typedef unsigned long long _UU64;
|
58
|
+
typedef signed long long _US64;
|
59
|
+
#elif (UNITY_LONG_WIDTH == 64)
|
60
|
+
typedef unsigned long _UU64;
|
61
|
+
typedef signed long _US64;
|
62
|
+
#else
|
63
|
+
#error Invalid UNITY_LONG_WIDTH specified! (32 or 64 are supported)
|
64
|
+
#endif
|
65
|
+
typedef _UU64 _U_UINT;
|
66
|
+
typedef _US64 _U_SINT;
|
67
|
+
|
68
|
+
#endif
|
69
|
+
|
70
|
+
//-------------------------------------------------------
|
71
|
+
// Pointer Support
|
72
|
+
//-------------------------------------------------------
|
73
|
+
|
74
|
+
#ifndef UNITY_POINTER_WIDTH
|
75
|
+
#define UNITY_POINTER_WIDTH (32)
|
76
|
+
#endif
|
77
|
+
|
78
|
+
#if (UNITY_POINTER_WIDTH == 32)
|
79
|
+
typedef _UU32 _UP;
|
80
|
+
#define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX32
|
81
|
+
#elif (UNITY_POINTER_WIDTH == 64)
|
82
|
+
typedef _UU64 _UP;
|
83
|
+
#define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX64
|
84
|
+
#elif (UNITY_POINTER_WIDTH == 16)
|
85
|
+
typedef _UU16 _UP;
|
86
|
+
#define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX16
|
87
|
+
#else
|
88
|
+
#error Invalid UNITY_POINTER_WIDTH specified! (16, 32 or 64 are supported)
|
89
|
+
#endif
|
90
|
+
|
91
|
+
//-------------------------------------------------------
|
92
|
+
// Float Support
|
93
|
+
//-------------------------------------------------------
|
94
|
+
|
95
|
+
#ifdef UNITY_EXCLUDE_FLOAT
|
96
|
+
|
97
|
+
//No Floating Point Support
|
98
|
+
#undef UNITY_FLOAT_PRECISION
|
99
|
+
#undef UNITY_FLOAT_TYPE
|
100
|
+
#undef UNITY_FLOAT_VERBOSE
|
101
|
+
|
102
|
+
#else
|
103
|
+
|
104
|
+
//Floating Point Support
|
105
|
+
#ifndef UNITY_FLOAT_PRECISION
|
106
|
+
#define UNITY_FLOAT_PRECISION (0.00001f)
|
107
|
+
#endif
|
108
|
+
#ifndef UNITY_FLOAT_TYPE
|
109
|
+
#define UNITY_FLOAT_TYPE float
|
110
|
+
#endif
|
111
|
+
typedef UNITY_FLOAT_TYPE _UF;
|
112
|
+
|
113
|
+
#endif
|
114
|
+
|
115
|
+
//-------------------------------------------------------
|
116
|
+
// Output Method
|
117
|
+
//-------------------------------------------------------
|
118
|
+
|
119
|
+
#ifndef UNITY_OUTPUT_CHAR
|
120
|
+
//Default to using putchar, which is defined in stdio.h above
|
121
|
+
#define UNITY_OUTPUT_CHAR(a) putchar(a)
|
122
|
+
#else
|
123
|
+
//If defined as something else, make sure we declare it here so it's ready for use
|
124
|
+
extern int UNITY_OUTPUT_CHAR(int);
|
125
|
+
#endif
|
126
|
+
|
127
|
+
//-------------------------------------------------------
|
128
|
+
// Footprint
|
129
|
+
//-------------------------------------------------------
|
130
|
+
|
131
|
+
#ifndef UNITY_LINE_TYPE
|
132
|
+
#define UNITY_LINE_TYPE unsigned short
|
133
|
+
#endif
|
134
|
+
|
135
|
+
#ifndef UNITY_COUNTER_TYPE
|
136
|
+
#define UNITY_COUNTER_TYPE unsigned short
|
137
|
+
#endif
|
138
|
+
|
139
|
+
//-------------------------------------------------------
|
140
|
+
// Internal Structs Needed
|
141
|
+
//-------------------------------------------------------
|
142
|
+
|
143
|
+
typedef void (*UnityTestFunction)(void);
|
144
|
+
|
145
|
+
#define UNITY_DISPLAY_RANGE_INT (0x10)
|
146
|
+
#define UNITY_DISPLAY_RANGE_UINT (0x20)
|
147
|
+
#define UNITY_DISPLAY_RANGE_HEX (0x40)
|
148
|
+
#define UNITY_DISPLAY_RANGE_AUTO (0x80)
|
149
|
+
|
150
|
+
typedef enum
|
151
|
+
{
|
152
|
+
UNITY_DISPLAY_STYLE_INT = 4 + UNITY_DISPLAY_RANGE_INT + UNITY_DISPLAY_RANGE_AUTO,
|
153
|
+
UNITY_DISPLAY_STYLE_INT8 = 1 + UNITY_DISPLAY_RANGE_INT,
|
154
|
+
UNITY_DISPLAY_STYLE_INT16 = 2 + UNITY_DISPLAY_RANGE_INT,
|
155
|
+
UNITY_DISPLAY_STYLE_INT32 = 4 + UNITY_DISPLAY_RANGE_INT,
|
156
|
+
#ifdef UNITY_SUPPORT_64
|
157
|
+
UNITY_DISPLAY_STYLE_INT64 = 8 + UNITY_DISPLAY_RANGE_INT,
|
158
|
+
#endif
|
159
|
+
UNITY_DISPLAY_STYLE_UINT = 4 + UNITY_DISPLAY_RANGE_UINT + UNITY_DISPLAY_RANGE_AUTO,
|
160
|
+
UNITY_DISPLAY_STYLE_UINT8 = 1 + UNITY_DISPLAY_RANGE_UINT,
|
161
|
+
UNITY_DISPLAY_STYLE_UINT16 = 2 + UNITY_DISPLAY_RANGE_UINT,
|
162
|
+
UNITY_DISPLAY_STYLE_UINT32 = 4 + UNITY_DISPLAY_RANGE_UINT,
|
163
|
+
#ifdef UNITY_SUPPORT_64
|
164
|
+
UNITY_DISPLAY_STYLE_UINT64 = 8 + UNITY_DISPLAY_RANGE_UINT,
|
165
|
+
#endif
|
166
|
+
UNITY_DISPLAY_STYLE_HEX8 = 1 + UNITY_DISPLAY_RANGE_HEX,
|
167
|
+
UNITY_DISPLAY_STYLE_HEX16 = 2 + UNITY_DISPLAY_RANGE_HEX,
|
168
|
+
UNITY_DISPLAY_STYLE_HEX32 = 4 + UNITY_DISPLAY_RANGE_HEX,
|
169
|
+
#ifdef UNITY_SUPPORT_64
|
170
|
+
UNITY_DISPLAY_STYLE_HEX64 = 8 + UNITY_DISPLAY_RANGE_HEX,
|
171
|
+
#endif
|
172
|
+
} UNITY_DISPLAY_STYLE_T;
|
173
|
+
|
174
|
+
struct _Unity
|
175
|
+
{
|
176
|
+
const char* TestFile;
|
177
|
+
const char* CurrentTestName;
|
178
|
+
_UU32 CurrentTestLineNumber;
|
179
|
+
UNITY_COUNTER_TYPE NumberOfTests;
|
180
|
+
UNITY_COUNTER_TYPE TestFailures;
|
181
|
+
UNITY_COUNTER_TYPE TestIgnores;
|
182
|
+
UNITY_COUNTER_TYPE CurrentTestFailed;
|
183
|
+
UNITY_COUNTER_TYPE CurrentTestIgnored;
|
184
|
+
jmp_buf AbortFrame;
|
185
|
+
};
|
186
|
+
|
187
|
+
extern struct _Unity Unity;
|
188
|
+
|
189
|
+
//-------------------------------------------------------
|
190
|
+
// Test Suite Management
|
191
|
+
//-------------------------------------------------------
|
192
|
+
|
193
|
+
void UnityBegin(void);
|
194
|
+
int UnityEnd(void);
|
195
|
+
void UnityConcludeTest(void);
|
196
|
+
void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, const int FuncLineNum);
|
197
|
+
|
198
|
+
//-------------------------------------------------------
|
199
|
+
// Test Output
|
200
|
+
//-------------------------------------------------------
|
201
|
+
|
202
|
+
void UnityPrint(const char* string);
|
203
|
+
void UnityPrintMask(const _U_UINT mask, const _U_UINT number);
|
204
|
+
void UnityPrintNumberByStyle(const _U_SINT number, const UNITY_DISPLAY_STYLE_T style);
|
205
|
+
void UnityPrintNumber(const _U_SINT number);
|
206
|
+
void UnityPrintNumberUnsigned(const _U_UINT number);
|
207
|
+
void UnityPrintNumberHex(const _U_UINT number, const char nibbles);
|
208
|
+
|
209
|
+
#ifdef UNITY_FLOAT_VERBOSE
|
210
|
+
void UnityPrintFloat(const _UF number);
|
211
|
+
#endif
|
212
|
+
|
213
|
+
//-------------------------------------------------------
|
214
|
+
// Test Assertion Fuctions
|
215
|
+
//-------------------------------------------------------
|
216
|
+
// Use the macros below this section instead of calling
|
217
|
+
// these directly. The macros have a consistent naming
|
218
|
+
// convention and will pull in file and line information
|
219
|
+
// for you.
|
220
|
+
|
221
|
+
void UnityAssertEqualNumber(const _U_SINT expected,
|
222
|
+
const _U_SINT actual,
|
223
|
+
const char* msg,
|
224
|
+
const UNITY_LINE_TYPE lineNumber,
|
225
|
+
const UNITY_DISPLAY_STYLE_T style);
|
226
|
+
|
227
|
+
void UnityAssertEqualIntArray(const _U_SINT* expected,
|
228
|
+
const _U_SINT* actual,
|
229
|
+
const _UU32 num_elements,
|
230
|
+
const char* msg,
|
231
|
+
const UNITY_LINE_TYPE lineNumber,
|
232
|
+
const UNITY_DISPLAY_STYLE_T style);
|
233
|
+
|
234
|
+
void UnityAssertBits(const _U_SINT mask,
|
235
|
+
const _U_SINT expected,
|
236
|
+
const _U_SINT actual,
|
237
|
+
const char* msg,
|
238
|
+
const UNITY_LINE_TYPE lineNumber);
|
239
|
+
|
240
|
+
void UnityAssertEqualString(const char* expected,
|
241
|
+
const char* actual,
|
242
|
+
const char* msg,
|
243
|
+
const UNITY_LINE_TYPE lineNumber);
|
244
|
+
|
245
|
+
void UnityAssertEqualStringArray( const char** expected,
|
246
|
+
const char** actual,
|
247
|
+
const _UU32 num_elements,
|
248
|
+
const char* msg,
|
249
|
+
const UNITY_LINE_TYPE lineNumber);
|
250
|
+
|
251
|
+
void UnityAssertEqualMemory( const void* expected,
|
252
|
+
const void* actual,
|
253
|
+
const _UU32 length,
|
254
|
+
const _UU32 num_elements,
|
255
|
+
const char* msg,
|
256
|
+
const UNITY_LINE_TYPE lineNumber);
|
257
|
+
|
258
|
+
void UnityAssertNumbersWithin(const _U_SINT delta,
|
259
|
+
const _U_SINT expected,
|
260
|
+
const _U_SINT actual,
|
261
|
+
const char* msg,
|
262
|
+
const UNITY_LINE_TYPE lineNumber,
|
263
|
+
const UNITY_DISPLAY_STYLE_T style);
|
264
|
+
|
265
|
+
void UnityFail(const char* message, const UNITY_LINE_TYPE line);
|
266
|
+
|
267
|
+
void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
|
268
|
+
|
269
|
+
#ifndef UNITY_EXCLUDE_FLOAT
|
270
|
+
void UnityAssertFloatsWithin(const _UF delta,
|
271
|
+
const _UF expected,
|
272
|
+
const _UF actual,
|
273
|
+
const char* msg,
|
274
|
+
const UNITY_LINE_TYPE lineNumber);
|
275
|
+
|
276
|
+
void UnityAssertEqualFloatArray(const _UF* expected,
|
277
|
+
const _UF* actual,
|
278
|
+
const _UU32 num_elements,
|
279
|
+
const char* msg,
|
280
|
+
const UNITY_LINE_TYPE lineNumber);
|
281
|
+
#endif
|
282
|
+
|
283
|
+
//-------------------------------------------------------
|
284
|
+
// Basic Fail and Ignore
|
285
|
+
//-------------------------------------------------------
|
286
|
+
|
287
|
+
#define UNITY_TEST_FAIL(line, message) UnityFail( (message), (UNITY_LINE_TYPE)line);
|
288
|
+
#define UNITY_TEST_IGNORE(line, message) UnityIgnore( (message), (UNITY_LINE_TYPE)line);
|
289
|
+
|
290
|
+
//-------------------------------------------------------
|
291
|
+
// Test Asserts
|
292
|
+
//-------------------------------------------------------
|
293
|
+
|
294
|
+
#define UNITY_TEST_ASSERT(condition, line, message) if (condition) {} else {UNITY_TEST_FAIL((UNITY_LINE_TYPE)line, message);}
|
295
|
+
#define UNITY_TEST_ASSERT_NULL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) == NULL), (UNITY_LINE_TYPE)line, message)
|
296
|
+
#define UNITY_TEST_ASSERT_NOT_NULL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) != NULL), (UNITY_LINE_TYPE)line, message)
|
297
|
+
|
298
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT)
|
299
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT8(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT)
|
300
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT16(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT)
|
301
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT32(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT)
|
302
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT)
|
303
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT8(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT)
|
304
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT16(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT)
|
305
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT32(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT)
|
306
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX8(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX8)
|
307
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX16(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX16)
|
308
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX32(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX32)
|
309
|
+
#define UNITY_TEST_ASSERT_BITS(mask, expected, actual, line, message) UnityAssertBits((_U_SINT)(mask), (_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line)
|
310
|
+
|
311
|
+
#define UNITY_TEST_ASSERT_INT_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((_U_SINT)(delta), (_U_SINT)(expected), (_U_SINT)(actual), NULL, (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT)
|
312
|
+
#define UNITY_TEST_ASSERT_UINT_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((_U_SINT)(delta), (_U_SINT)(expected), (_U_SINT)(actual), NULL, (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT)
|
313
|
+
#define UNITY_TEST_ASSERT_HEX8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((_U_SINT)(delta), (_U_SINT)(expected), (_U_SINT)(actual), NULL, (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX8)
|
314
|
+
#define UNITY_TEST_ASSERT_HEX16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((_U_SINT)(delta), (_U_SINT)(expected), (_U_SINT)(actual), NULL, (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX16)
|
315
|
+
#define UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((_U_SINT)(delta), (_U_SINT)(expected), (_U_SINT)(actual), NULL, (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX32)
|
316
|
+
#define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((_U_SINT)(delta), (_U_SINT)(expected), (_U_SINT)(actual), NULL, (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX64)
|
317
|
+
|
318
|
+
#define UNITY_TEST_ASSERT_EQUAL_PTR(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(_UP)(expected), (_U_SINT)(_UP)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_POINTER)
|
319
|
+
#define UNITY_TEST_ASSERT_EQUAL_STRING(expected, actual, line, message) UnityAssertEqualString((const char*)(expected), (const char*)(actual), (message), (UNITY_LINE_TYPE)line)
|
320
|
+
#define UNITY_TEST_ASSERT_EQUAL_MEMORY(expected, actual, len, line, message) UnityAssertEqualMemory((void*)(expected), (void*)(actual), (_UU32)(len), 1, (message), (UNITY_LINE_TYPE)line)
|
321
|
+
|
322
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT)
|
323
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT8)
|
324
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT16)
|
325
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT32)
|
326
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT)
|
327
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT8)
|
328
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT16)
|
329
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT32)
|
330
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX8)
|
331
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX16)
|
332
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX32)
|
333
|
+
#define UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualStringArray((const char**)(expected), (const char**)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line)
|
334
|
+
#define UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements, line, message) UnityAssertEqualMemory((void*)(expected), (void*)(actual), (_UU32)(len), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line)
|
335
|
+
|
336
|
+
#ifdef UNITY_SUPPORT_64
|
337
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT64)
|
338
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT64)
|
339
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message) UnityAssertEqualNumber((_U_SINT)(expected), (_U_SINT)(actual), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX64)
|
340
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_INT64)
|
341
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_UINT64)
|
342
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((const _U_SINT*)(expected), (const _U_SINT*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line, UNITY_DISPLAY_STYLE_HEX64)
|
343
|
+
#endif
|
344
|
+
|
345
|
+
#ifdef UNITY_EXCLUDE_FLOAT
|
346
|
+
#define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)line, "Unity Floating Point Disabled")
|
347
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)line, "Unity Floating Point Disabled")
|
348
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)line, "Unity Floating Point Disabled")
|
349
|
+
#else
|
350
|
+
#define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message) UnityAssertFloatsWithin((_UF)(delta), (_UF)(expected), (_UF)(actual), (message), (UNITY_LINE_TYPE)line)
|
351
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_ASSERT_FLOAT_WITHIN((_UF)(expected) * (_UF)UNITY_FLOAT_PRECISION, (_UF)expected, (_UF)actual, (UNITY_LINE_TYPE)line, message)
|
352
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualFloatArray((_UF*)(expected), (_UF*)(actual), (_UU32)(num_elements), (message), (UNITY_LINE_TYPE)line)
|
353
|
+
#endif
|
354
|
+
|
355
|
+
#endif
|
@@ -0,0 +1,42 @@
|
|
1
|
+
compiler:
|
2
|
+
path: gcc
|
3
|
+
source_path: 'src/'
|
4
|
+
unit_tests_path: &unit_tests_path 'test/'
|
5
|
+
build_path: &build_path 'build/'
|
6
|
+
options:
|
7
|
+
- '-c'
|
8
|
+
- '-Wall'
|
9
|
+
- '-Wno-address'
|
10
|
+
- '-std=c99'
|
11
|
+
- '-pedantic'
|
12
|
+
includes:
|
13
|
+
prefix: '-I'
|
14
|
+
items:
|
15
|
+
- 'src/'
|
16
|
+
- '../src/'
|
17
|
+
- *unit_tests_path
|
18
|
+
defines:
|
19
|
+
prefix: '-D'
|
20
|
+
items:
|
21
|
+
- UNITY_SUPPORT_64
|
22
|
+
- UNITY_SUPPORT_TEST_CASES
|
23
|
+
object_files:
|
24
|
+
prefix: '-o'
|
25
|
+
extension: '.o'
|
26
|
+
destination: *build_path
|
27
|
+
linker:
|
28
|
+
path: gcc
|
29
|
+
options:
|
30
|
+
- -lm
|
31
|
+
includes:
|
32
|
+
prefix: '-I'
|
33
|
+
object_files:
|
34
|
+
path: *build_path
|
35
|
+
extension: '.o'
|
36
|
+
bin_files:
|
37
|
+
prefix: '-o'
|
38
|
+
extension: '.exe'
|
39
|
+
destination: *build_path
|
40
|
+
colour: true
|
41
|
+
:unity:
|
42
|
+
:plugins: []
|