ceedling 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +17 -0
- data/bin/ceedling +17 -0
- data/ceedling-gem.sublime-project +442 -0
- data/ceedling.gemspec +2 -1
- data/examples/temp_sensor/project.yml +71 -0
- data/examples/temp_sensor/rakefile.rb +4 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/AT91SAM7X256.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcConductor.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/AdcConductor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardware.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardware.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardwareConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcHardwareConfigurator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcModel.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcModel.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcTemperatureSensor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/AdcTemperatureSensor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Executor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Executor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/IntrinsicsWrapper.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/IntrinsicsWrapper.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Main.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Main.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Model.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/Model.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/ModelConfig.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TaskScheduler.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TaskScheduler.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TemperatureCalculator.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/TemperatureCalculator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TemperatureFilter.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TemperatureFilter.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConductor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConductor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerConfigurator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerHardware.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerHardware.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptConfigurator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptHandler.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerInterruptHandler.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerModel.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/TimerModel.h +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/Types.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartBaudRateRegisterCalculator.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples → examples/temp_sensor}/src/UsartBaudRateRegisterCalculator.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConductor.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConductor.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConfigurator.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartConfigurator.h +0 -0
- data/examples/temp_sensor/src/UsartGetChar.c +6 -0
- data/examples/temp_sensor/src/UsartGetChar.h +8 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartHardware.c +12 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartHardware.h +1 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartModel.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartModel.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartPutChar.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartPutChar.h +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartTransmitBufferStatus.c +0 -0
- data/{new_project_template/vendor/ceedling/examples → examples}/temp_sensor/src/UsartTransmitBufferStatus.h +0 -0
- data/{new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper → examples/temp_sensor/test/support}/UnityHelper.c +0 -0
- data/{new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/helper → examples/temp_sensor/test/support}/UnityHelper.h +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcConductor.c → examples/temp_sensor/test/test_AdcConductor.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcHardware.c → examples/temp_sensor/test/test_AdcHardware.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardwareConfigurator.c → examples/temp_sensor/test/test_AdcHardwareConfigurator.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcTemperatureSensor.c → examples/temp_sensor/test/test_AdcTemperatureSensor.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestExecutor.c → examples/temp_sensor/test/test_Executor.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestModel.c → examples/temp_sensor/test/test_Model.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTaskScheduler.c → examples/temp_sensor/test/test_TaskScheduler.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureCalculator.c → examples/temp_sensor/test/test_TemperatureCalculator.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTemperatureFilter.c → examples/temp_sensor/test/test_TemperatureFilter.c} +2 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestAdcModel.c → examples/temp_sensor/test/test_TestAdcModel.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestMain.c → examples/temp_sensor/test/test_TestMain.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerConductor.c → examples/temp_sensor/test/test_TimerConductor.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConfigurator.c → examples/temp_sensor/test/test_TimerConfigurator.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerHardware.c → examples/temp_sensor/test/test_TimerHardware.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptConfigurator.c → examples/temp_sensor/test/test_TimerInterruptConfigurator.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerInterruptHandler.c → examples/temp_sensor/test/test_TimerInterruptHandler.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestTimerModel.c → examples/temp_sensor/test/test_TimerModel.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c → examples/temp_sensor/test/test_UsartBaudRateRegisterCalculator.c} +0 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartConductor.c → examples/temp_sensor/test/test_UsartConductor.c} +1 -1
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConfigurator.c → examples/temp_sensor/test/test_UsartConfigurator.c} +0 -0
- data/examples/temp_sensor/test/test_UsartGetChar.c +17 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartHardware.c → examples/temp_sensor/test/test_UsartHardware.c} +19 -0
- data/{new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartModel.c → examples/temp_sensor/test/test_UsartModel.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartPutChar.c → examples/temp_sensor/test/test_UsartPutChar.c} +0 -0
- data/{new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartTransmitBufferStatus.c → examples/temp_sensor/test/test_UsartTransmitBufferStatus.c} +0 -0
- data/lib/ceedling/version.rb +1 -1
- data/new_project_template/project.yml +1 -1
- metadata +121 -849
- data/new_project_template/vendor/ceedling/config/test_environment.rb +0 -12
- data/new_project_template/vendor/ceedling/examples/temp_sensor/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v4.yml +0 -91
- data/new_project_template/vendor/ceedling/examples/temp_sensor/iar_v5.yml +0 -80
- data/new_project_template/vendor/ceedling/examples/temp_sensor/project.yml +0 -65
- data/new_project_template/vendor/ceedling/examples/temp_sensor/rakefile.rb +0 -5
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/AdcConductor.h +0 -13
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/TemperatureCalculator.h +0 -8
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/Types.h +0 -90
- data/new_project_template/vendor/ceedling/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +0 -8
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/TestUsartHardware.c +0 -36
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.c +0 -12
- data/new_project_template/vendor/ceedling/examples/temp_sensor/test/support/UnityHelper.h +0 -8
- data/new_project_template/vendor/ceedling/test/integration/paths.yml +0 -17
- data/new_project_template/vendor/ceedling/test/integration/paths_test.rb +0 -80
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_aux_dependencies_test.rb +0 -75
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_cmock_test.rb +0 -74
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_preprocess_test.rb +0 -178
- data/new_project_template/vendor/ceedling/test/integration/rake_rules_test.rb +0 -268
- data/new_project_template/vendor/ceedling/test/integration/rake_tasks_test.rb +0 -103
- data/new_project_template/vendor/ceedling/test/integration_test_helper.rb +0 -34
- data/new_project_template/vendor/ceedling/test/rakefile_rules.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_rules_aux_dependencies.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_rules_cmock.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_rules_preprocess.rb +0 -10
- data/new_project_template/vendor/ceedling/test/rakefile_tasks.rb +0 -10
- data/new_project_template/vendor/ceedling/test/system/file_system_dependencies.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_kitchen_sink.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_mocks.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_preprocess.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_simple.yml +0 -20
- data/new_project_template/vendor/ceedling/test/system/file_system_test.rb +0 -78
- data/new_project_template/vendor/ceedling/test/system/mocks/include/a_file.h +0 -2
- data/new_project_template/vendor/ceedling/test/system/mocks/include/other_stuff.h +0 -2
- data/new_project_template/vendor/ceedling/test/system/mocks/include/stuff.h +0 -3
- data/new_project_template/vendor/ceedling/test/system/mocks/source/a_file.c +0 -9
- data/new_project_template/vendor/ceedling/test/system/mocks/test/test_a_file.c +0 -41
- data/new_project_template/vendor/ceedling/test/system/mocks/test/test_no_file.c +0 -14
- data/new_project_template/vendor/ceedling/test/system/project_mocks.yml +0 -43
- data/new_project_template/vendor/ceedling/test/system/project_mocks_test.rb +0 -38
- data/new_project_template/vendor/ceedling/test/system/project_simple.yml +0 -36
- data/new_project_template/vendor/ceedling/test/system/project_simple_test.rb +0 -39
- data/new_project_template/vendor/ceedling/test/system/rule_mocks_test.rb +0 -44
- data/new_project_template/vendor/ceedling/test/system/rule_runners_test.rb +0 -44
- data/new_project_template/vendor/ceedling/test/system/simple/include/other_stuff.h +0 -2
- data/new_project_template/vendor/ceedling/test/system/simple/include/stuff.h +0 -3
- data/new_project_template/vendor/ceedling/test/system/simple/source/other_stuff.c +0 -6
- data/new_project_template/vendor/ceedling/test/system/simple/source/stuff.c +0 -7
- data/new_project_template/vendor/ceedling/test/system/simple/test/test_other_stuff.c +0 -30
- data/new_project_template/vendor/ceedling/test/system/simple/test/test_stuff.c +0 -51
- data/new_project_template/vendor/ceedling/test/system_test_helper.rb +0 -73
- data/new_project_template/vendor/ceedling/test/test_helper.rb +0 -93
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_builder_test.rb +0 -571
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_helper_test.rb +0 -234
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_test.rb +0 -232
- data/new_project_template/vendor/ceedling/test/unit/busted/configurator_validator_test.rb +0 -169
- data/new_project_template/vendor/ceedling/test/unit/busted/deep_merge_fix_test.rb +0 -55
- data/new_project_template/vendor/ceedling/test/unit/busted/dependinator_test.rb +0 -129
- data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_helper_test.rb +0 -45
- data/new_project_template/vendor/ceedling/test/unit/busted/file_finder_test.rb +0 -114
- data/new_project_template/vendor/ceedling/test/unit/busted/file_path_utils_test.rb +0 -97
- data/new_project_template/vendor/ceedling/test/unit/busted/file_system_utils_test.rb +0 -21
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test.rb +0 -187
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_results_test.rb +0 -129
- data/new_project_template/vendor/ceedling/test/unit/busted/generator_test_runner_test.rb +0 -478
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_extractor_test.rb +0 -729
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_file_handler_test.rb +0 -38
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_helper_test.rb +0 -156
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_includes_handler_test.rb +0 -93
- data/new_project_template/vendor/ceedling/test/unit/busted/preprocessinator_test.rb +0 -57
- data/new_project_template/vendor/ceedling/test/unit/busted/project_file_loader_test.rb +0 -142
- data/new_project_template/vendor/ceedling/test/unit/busted/setupinator_test.rb +0 -45
- data/new_project_template/vendor/ceedling/test/unit/busted/streaminator_test.rb +0 -49
- data/new_project_template/vendor/ceedling/test/unit/busted/task_invoker_test.rb +0 -69
- data/new_project_template/vendor/ceedling/test/unit/busted/test_includes_extractor_test.rb +0 -111
- data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_helper_test.rb +0 -62
- data/new_project_template/vendor/ceedling/test/unit/busted/test_invoker_test.rb +0 -47
- data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_helper_test.rb +0 -100
- data/new_project_template/vendor/ceedling/test/unit/busted/tool_executor_test.rb +0 -351
- data/new_project_template/vendor/ceedling/test/unit/busted/verbosinator_test.rb +0 -65
- data/new_project_template/vendor/ceedling/test/unit_test_helper.rb +0 -16
- data/new_project_template/vendor/ceedling/vendor/behaviors/Manifest.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/behaviors/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors.rb +0 -76
- data/new_project_template/vendor/ceedling/vendor/behaviors/lib/behaviors/reporttask.rb +0 -158
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_tasks_test.rb +0 -73
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/behaviors_test.rb +0 -50
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/lib/user.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/behaviors/test/tasks_test/test/user_test.rb +0 -17
- data/new_project_template/vendor/ceedling/vendor/c_exception/makefile +0 -24
- data/new_project_template/vendor/ceedling/vendor/c_exception/rakefile.rb +0 -41
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/CExceptionConfig.h +0 -27
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException.c +0 -291
- data/new_project_template/vendor/ceedling/vendor/c_exception/test/TestException_Runner.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -126
- 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/license.txt +0 -31
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.c +0 -856
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity.h +0 -213
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -355
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/c_exception/vendor/unity/test/testunity.c +0 -1510
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/gcc.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v4.yml +0 -91
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/iar_v5.yml +0 -80
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/rakefile_helper.rb +0 -274
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcConductor.c +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.c +0 -27
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardware.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcHardwareConfigurator.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.c +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcModel.h +0 -13
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/AdcTemperatureSensor.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.c +0 -25
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Executor.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/IntrinsicsWrapper.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Main.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/Model.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/ModelConfig.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TaskScheduler.h +0 -11
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureCalculator.c +0 -27
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TemperatureFilter.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.c +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConductor.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerConfigurator.h +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.c +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerHardware.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.c +0 -55
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptConfigurator.h +0 -13
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.c +0 -25
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerInterruptHandler.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/TimerModel.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartBaudRateRegisterCalculator.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConductor.h +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartConfigurator.h +0 -13
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.c +0 -22
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartHardware.h +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.c +0 -34
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartModel.h +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.c +0 -16
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartPutChar.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.c +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/src/UsartTransmitBufferStatus.h +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcConductor.c +0 -121
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcHardware.c +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestAdcModel.c +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestExecutor.c +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestMain.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestModel.c +0 -20
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTaskScheduler.c +0 -104
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureCalculator.c +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTemperatureFilter.c +0 -69
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerConductor.c +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerHardware.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestTimerModel.c +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartBaudRateRegisterCalculator.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartConductor.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/examples/test/TestUsartModel.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_FLASH.mac +0 -71
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_RAM.mac +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/SAM7_SIM.mac +0 -67
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_FLASH.xcl +0 -185
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/at91SAM7X256_RAM.xcl +0 -185
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/Resource/ioat91sam7x256.ddf +0 -2259
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.dep +0 -3691
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewd +0 -1696
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.ewp +0 -2581
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/cmock_demo.eww +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X-EK.h +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.inc +0 -2314
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.rdf +0 -4704
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256.tcl +0 -3407
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +0 -2268
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/ioat91sam7x256.h +0 -4380
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/incIAR/lib_AT91SAM7X256.h +0 -4211
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.cspy.bat +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dbgdt +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.dni +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/settings/cmock_demo.wsdt +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup.s79 +0 -266
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v4/srcIAR/Cstartup_SAM7.c +0 -98
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_FLASH.mac +0 -71
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_RAM.mac +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/SAM7_SIM.mac +0 -67
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_FLASH.icf +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/Resource/at91SAM7X256_RAM.icf +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.dep +0 -4204
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewd +0 -1906
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.ewp +0 -2426
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/cmock_demo.eww +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X-EK.h +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +0 -2268
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/lib_AT91SAM7X256.h +0 -4211
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/incIAR/project.h +0 -30
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.cspy.bat +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dbgdt +0 -5
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.dni +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X.wsdt +0 -74
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/BasicInterrupt_SAM7X_FLASH_Debug.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.cspy.bat +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dbgdt +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.dni +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo.wsdt +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_Binary.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_FLASH_Debug.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/settings/cmock_demo_RAM_Debug.jlink +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup.s +0 -299
- data/new_project_template/vendor/ceedling/vendor/cmock/iar/iar_v5/srcIAR/Cstartup_SAM7.c +0 -98
- data/new_project_template/vendor/ceedling/vendor/cmock/rakefile.rb +0 -89
- data/new_project_template/vendor/ceedling/vendor/cmock/rakefile_helper.rb +0 -383
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc.yml +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_32_with_64_support.yml +0 -52
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/gcc_64.yml +0 -53
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v4.yml +0 -107
- data/new_project_template/vendor/ceedling/vendor/cmock/targets/iar_arm_v5.yml +0 -92
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.c +0 -280
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC.yml +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.c +0 -186
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic.yml +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +0 -35
- data/new_project_template/vendor/ceedling/vendor/cmock/test/c/TestCMockC_Runner.c +0 -37
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/systest_generator.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/config.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/const.h +0 -15
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/osek.h +0 -275
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_compilation/parsing.h +0 -47
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +0 -340
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +0 -381
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +0 -382
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +0 -123
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +0 -87
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +0 -247
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +0 -108
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +0 -173
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +0 -170
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +0 -208
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +0 -82
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +0 -153
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +0 -52
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +0 -91
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +0 -59
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +0 -222
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +0 -277
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +0 -221
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +0 -82
- data/new_project_template/vendor/ceedling/vendor/cmock/test/system/test_interactions/unity_ignores.yml +0 -139
- data/new_project_template/vendor/ceedling/vendor/cmock/test/test_helper.rb +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.rb +0 -45
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_config_test.yml +0 -5
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_file_writer_test.rb +0 -30
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_main_test.rb +0 -412
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +0 -114
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +0 -190
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_expect_test.rb +0 -206
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +0 -159
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_generator_utils_test.rb +0 -291
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_header_parser_test.rb +0 -1170
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +0 -223
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Manifest.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors.rb +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/lib/behaviors/reporttask.rb +0 -158
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_tasks_test.rb +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/behaviors_test.rb +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/Rakefile +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/lib/user.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/behaviors/test/tasks_test/test/user_test.rb +0 -17
- 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 +0 -30
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/docs/readme.txt +0 -236
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/lib/CException.h +0 -70
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/makefile +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/rakefile.rb +0 -41
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/CExceptionConfig.h +0 -27
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException.c +0 -291
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/test/TestException_Runner.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -126
- 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 +0 -217
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +0 -31
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/helper/UnityHelper.h +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +0 -856
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +0 -213
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -355
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/c_exception/vendor/unity/test/testunity.c +0 -1510
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/CHANGES +0 -78
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/LICENSE +0 -7
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/README +0 -70
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/Rakefile +0 -8
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/config/environment.rb +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/assert_error.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/extend_test_unit.rb +0 -14
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock.rb +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/errors.rb +0 -22
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/expector.rb +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock.rb +0 -180
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/hardmock/utils.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/rake_tasks/test.rake +0 -22
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/test_helper.rb +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expectation_test.rb +0 -372
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/expector_test.rb +0 -57
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/mock_test.rb +0 -279
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/trapper_test.rb +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +0 -126
- 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 +0 -217
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/docs/license.txt +0 -31
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/helper/UnityHelper.h +0 -12
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/build.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/release/version.info +0 -2
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.c +0 -856
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity.h +0 -213
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/src/unity_internals.h +0 -355
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/cmock/vendor/unity/test/testunity.c +0 -1510
- data/new_project_template/vendor/ceedling/vendor/constructor/History.rdoc +0 -19
- data/new_project_template/vendor/ceedling/vendor/constructor/README.rdoc +0 -72
- data/new_project_template/vendor/ceedling/vendor/constructor/Rakefile +0 -33
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Notes.txt +0 -27
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/Rakefile +0 -15
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.erb +0 -27
- data/new_project_template/vendor/ceedling/vendor/constructor/homepage/index.html +0 -36
- 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 +0 -9
- 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 +0 -12
- data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_spec.rb +0 -407
- data/new_project_template/vendor/ceedling/vendor/constructor/specs/constructor_struct_spec.rb +0 -84
- data/new_project_template/vendor/ceedling/vendor/diy/Rakefile +0 -33
- data/new_project_template/vendor/ceedling/vendor/diy/TODO.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/diy/diy.gemspec +0 -131
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/car.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/chassis.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/diy_example.rb +0 -26
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/engine.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/sample_code/objects.yml +0 -10
- data/new_project_template/vendor/ceedling/vendor/diy/test/constructor.rb +0 -119
- data/new_project_template/vendor/ceedling/vendor/diy/test/diy_test.rb +0 -608
- data/new_project_template/vendor/ceedling/vendor/diy/test/factory_test.rb +0 -79
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/broken_construction.yml +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/cat.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/extra_conflict.yml +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/heritage.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/needs_input.yml +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/cat/the_cat_lineage.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_model.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_presenter.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/dog_view.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/file_resolver.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/other_thing.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/dog/simple.yml +0 -11
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/donkey/foo/bar/qux.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/beef.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/dog.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/factory.yml +0 -19
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/llama.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/farm/pork.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/factory/kitten.rb +0 -13
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/objects.yml +0 -13
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/fud/toy.rb +0 -14
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/attached_things_builder.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/invalid_method.yml +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/method_extractor.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/nonsingleton_objects.yml +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/objects.yml +0 -22
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/thing_builder.rb +0 -25
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/functions/things_builder.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/objects.yml +0 -14
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/gnu/thinger.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/base.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/can.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/goat.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/objects.yml +0 -12
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/paper.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/plane.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/shirt.rb +0 -6
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/goat/wings.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/holder_thing.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/horse/objects.yml +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/bird.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/cat.rb +0 -5
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/animal/reptile/lizard.rb +0 -7
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/bad_module_specified.yml +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/class_name_combine.yml +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/hello.txt +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/no_module_specified.yml +0 -8
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/objects.yml +0 -21
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/road.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/sky.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/namespace/subcontext.yml +0 -22
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/air.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/fat_cat.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/objects.yml +0 -19
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/pig.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/thread_spinner.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/tick.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/non_singleton/yard.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_model.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_presenter.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/core_view.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/data_source.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_model.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_presenter.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/fringe_view.rb +0 -1
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/giant_squid.rb +0 -3
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/krill.rb +0 -2
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/my_objects.yml +0 -21
- data/new_project_template/vendor/ceedling/vendor/diy/test/files/yak/sub_sub_context_test.yml +0 -27
- data/new_project_template/vendor/ceedling/vendor/diy/test/test_helper.rb +0 -55
- data/new_project_template/vendor/ceedling/vendor/hardmock/CHANGES +0 -78
- data/new_project_template/vendor/ceedling/vendor/hardmock/LICENSE +0 -7
- data/new_project_template/vendor/ceedling/vendor/hardmock/README +0 -70
- data/new_project_template/vendor/ceedling/vendor/hardmock/Rakefile +0 -8
- data/new_project_template/vendor/ceedling/vendor/hardmock/config/environment.rb +0 -12
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/assert_error.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/extend_test_unit.rb +0 -14
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock.rb +0 -86
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/errors.rb +0 -22
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/expector.rb +0 -26
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock.rb +0 -180
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/hardmock/utils.rb +0 -9
- data/new_project_template/vendor/ceedling/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
- data/new_project_template/vendor/ceedling/vendor/hardmock/rake_tasks/test.rake +0 -22
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/test_helper.rb +0 -43
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expectation_test.rb +0 -372
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/expector_test.rb +0 -57
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/mock_test.rb +0 -279
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/trapper_test.rb +0 -62
- data/new_project_template/vendor/ceedling/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
- data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_prompt.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/unity/auto/colour_reporter.rb +0 -39
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_config.yml +0 -36
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_module.rb +0 -202
- data/new_project_template/vendor/ceedling/vendor/unity/auto/generate_test_runner.rb +0 -303
- data/new_project_template/vendor/ceedling/vendor/unity/auto/test_file_filter.rb +0 -23
- data/new_project_template/vendor/ceedling/vendor/unity/auto/unity_test_summary.rb +0 -126
- data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.c +0 -10
- data/new_project_template/vendor/ceedling/vendor/unity/examples/helper/UnityHelper.h +0 -12
- data/new_project_template/vendor/ceedling/vendor/unity/examples/makefile +0 -40
- data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile.rb +0 -32
- data/new_project_template/vendor/ceedling/vendor/unity/examples/rakefile_helper.rb +0 -260
- data/new_project_template/vendor/ceedling/vendor/unity/examples/readme.txt +0 -18
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.c +0 -24
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode.h +0 -3
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.c +0 -9
- data/new_project_template/vendor/ceedling/vendor/unity/examples/src/ProductionCode2.h +0 -2
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode.c +0 -62
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/TestProductionCode2.c +0 -26
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode2_Runner.c +0 -46
- data/new_project_template/vendor/ceedling/vendor/unity/examples/test/no_ruby/TestProductionCode_Runner.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/MakefileWorker.mk +0 -331
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/build/filterGcov.sh +0 -61
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile.rb +0 -37
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/readme.txt +0 -9
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.c +0 -381
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture.h +0 -81
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -44
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -16
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/main/AllTests.c +0 -21
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/testunity_fixture.c +0 -39
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -321
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -40
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -56
- data/new_project_template/vendor/ceedling/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/new_project_template/vendor/ceedling/vendor/unity/makefile +0 -35
- data/new_project_template/vendor/ceedling/vendor/unity/rakefile.rb +0 -48
- data/new_project_template/vendor/ceedling/vendor/unity/rakefile_helper.rb +0 -243
- data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc.yml +0 -42
- data/new_project_template/vendor/ceedling/vendor/unity/targets/gcc_64.yml +0 -43
- data/new_project_template/vendor/ceedling/vendor/unity/targets/hitech_picc18.yml +0 -101
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v4.yml +0 -89
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_arm_v5_3.yml +0 -79
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -93
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_cortexm3_v5.yml +0 -83
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_msp430.yml +0 -94
- data/new_project_template/vendor/ceedling/vendor/unity/targets/iar_sh2a_v6.yml +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_cmd.c +0 -54
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_def.c +0 -50
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -76
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_def.c +0 -72
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_param.c +0 -73
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -85
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -86
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_new2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_param.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run1.c +0 -60
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_run2.c +0 -63
- data/new_project_template/vendor/ceedling/vendor/unity/test/expectdata/testsample_yaml.c +0 -64
- data/new_project_template/vendor/ceedling/vendor/unity/test/test_generate_test_runner.rb +0 -94
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/mocksample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/sample.yml +0 -9
- data/new_project_template/vendor/ceedling/vendor/unity/test/testdata/testsample.c +0 -51
- data/new_project_template/vendor/ceedling/vendor/unity/test/testparameterized.c +0 -101
- data/new_project_template/vendor/ceedling/vendor/unity/test/testunity.c +0 -1510
@@ -1,114 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# CMock Project - Automatic Mock Generation 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
|
-
require File.expand_path(File.dirname(__FILE__)) + "/../test_helper"
|
8
|
-
require 'cmock_generator_plugin_array'
|
9
|
-
|
10
|
-
class CMockGeneratorPluginArrayTest < Test::Unit::TestCase
|
11
|
-
def setup
|
12
|
-
create_mocks :config, :utils
|
13
|
-
|
14
|
-
#no strict ordering
|
15
|
-
@config.expect.when_ptr.returns(:compare_data)
|
16
|
-
@config.expect.enforce_strict_ordering.returns(false)
|
17
|
-
@config.stubs!(:respond_to?).returns(true)
|
18
|
-
@utils.expect.helpers.returns({})
|
19
|
-
@cmock_generator_plugin_array = CMockGeneratorPluginArray.new(@config, @utils)
|
20
|
-
end
|
21
|
-
|
22
|
-
def teardown
|
23
|
-
end
|
24
|
-
|
25
|
-
should "have set up internal accessors correctly on init" do
|
26
|
-
assert_equal(@config, @cmock_generator_plugin_array.config)
|
27
|
-
assert_equal(@utils, @cmock_generator_plugin_array.utils)
|
28
|
-
assert_equal(nil, @cmock_generator_plugin_array.unity_helper)
|
29
|
-
assert_equal(8, @cmock_generator_plugin_array.priority)
|
30
|
-
end
|
31
|
-
|
32
|
-
should "not include any additional include files" do
|
33
|
-
assert(!@cmock_generator_plugin_array.respond_to?(:include_files))
|
34
|
-
end
|
35
|
-
|
36
|
-
should "not add to typedef structure for functions of style 'int* func(void)'" do
|
37
|
-
function = {:name => "Oak", :args => [], :return => test_return[:int_ptr]}
|
38
|
-
returned = @cmock_generator_plugin_array.instance_typedefs(function)
|
39
|
-
assert_equal("", returned)
|
40
|
-
end
|
41
|
-
|
42
|
-
should "add to tyepdef structure mock needs of functions of style 'void func(int chicken, int* pork)'" do
|
43
|
-
function = {:name => "Cedar", :args => [{ :name => "chicken", :type => "int", :ptr? => false}, { :name => "pork", :type => "int*", :ptr? => true}], :return => test_return[:void]}
|
44
|
-
expected = " int Expected_pork_Depth;\n"
|
45
|
-
returned = @cmock_generator_plugin_array.instance_typedefs(function)
|
46
|
-
assert_equal(expected, returned)
|
47
|
-
end
|
48
|
-
|
49
|
-
should "not add an additional mock interface for functions not containing pointers" do
|
50
|
-
function = {:name => "Maple", :args_string => "int blah", :return => test_return[:string], :contains_ptr? => false}
|
51
|
-
returned = @cmock_generator_plugin_array.mock_function_declarations(function)
|
52
|
-
assert_nil(returned)
|
53
|
-
end
|
54
|
-
|
55
|
-
should "add another mock function declaration for functions of style 'void func(int* tofu)'" do
|
56
|
-
function = {:name => "Pine",
|
57
|
-
:args => [{ :type => "int*",
|
58
|
-
:name => "tofu",
|
59
|
-
:ptr? => true,
|
60
|
-
}],
|
61
|
-
:return => test_return[:void],
|
62
|
-
:contains_ptr? => true }
|
63
|
-
|
64
|
-
expected = "#define #{function[:name]}_ExpectWithArray(tofu, tofu_Depth) #{function[:name]}_CMockExpectWithArray(__LINE__, tofu, tofu_Depth)\n" +
|
65
|
-
"void #{function[:name]}_CMockExpectWithArray(UNITY_LINE_TYPE cmock_line, int* tofu, int tofu_Depth);\n"
|
66
|
-
returned = @cmock_generator_plugin_array.mock_function_declarations(function)
|
67
|
-
assert_equal(expected, returned)
|
68
|
-
end
|
69
|
-
|
70
|
-
should "add another mock function declaration for functions of style 'const char* func(int* tofu)'" do
|
71
|
-
function = {:name => "Pine",
|
72
|
-
:args => [{ :type => "int*",
|
73
|
-
:name => "tofu",
|
74
|
-
:ptr? => true,
|
75
|
-
}],
|
76
|
-
:return => test_return[:string],
|
77
|
-
:contains_ptr? => true }
|
78
|
-
|
79
|
-
expected = "#define #{function[:name]}_ExpectWithArrayAndReturn(tofu, tofu_Depth, cmock_retval) #{function[:name]}_CMockExpectWithArrayAndReturn(__LINE__, tofu, tofu_Depth, cmock_retval)\n" +
|
80
|
-
"void #{function[:name]}_CMockExpectWithArrayAndReturn(UNITY_LINE_TYPE cmock_line, int* tofu, int tofu_Depth, const char* cmock_to_return);\n"
|
81
|
-
returned = @cmock_generator_plugin_array.mock_function_declarations(function)
|
82
|
-
assert_equal(expected, returned)
|
83
|
-
end
|
84
|
-
|
85
|
-
should "not have a mock function implementation" do
|
86
|
-
assert(!@cmock_generator_plugin_array.respond_to?(:mock_implementation))
|
87
|
-
end
|
88
|
-
|
89
|
-
should "not have a mock interfaces for functions of style 'int* func(void)'" do
|
90
|
-
function = {:name => "Pear", :args => [], :args_string => "void", :return => test_return[:int_ptr]}
|
91
|
-
returned = @cmock_generator_plugin_array.mock_interfaces(function)
|
92
|
-
assert_nil(returned)
|
93
|
-
end
|
94
|
-
|
95
|
-
should "add mock interfaces for functions of style 'int* func(int* pescado, int pes)'" do
|
96
|
-
function = {:name => "Lemon",
|
97
|
-
:args => [{ :type => "int*", :name => "pescado", :ptr? => true}, { :type => "int", :name => "pes", :ptr? => false}],
|
98
|
-
:args_string => "int* pescado, int pes",
|
99
|
-
:return => test_return[:int_ptr],
|
100
|
-
:contains_ptr? => true }
|
101
|
-
@utils.expect.code_add_base_expectation("Lemon").returns("mock_retval_0")
|
102
|
-
|
103
|
-
expected = ["void Lemon_CMockExpectWithArrayAndReturn(UNITY_LINE_TYPE cmock_line, int* pescado, int pescado_Depth, int pes, int* cmock_to_return)\n",
|
104
|
-
"{\n",
|
105
|
-
"mock_retval_0",
|
106
|
-
" CMockExpectParameters_Lemon(cmock_call_instance, pescado, pescado_Depth, pes);\n",
|
107
|
-
" cmock_call_instance->ReturnVal = cmock_to_return;\n",
|
108
|
-
"}\n\n"
|
109
|
-
].join
|
110
|
-
returned = @cmock_generator_plugin_array.mock_interfaces(function).join
|
111
|
-
assert_equal(expected, returned)
|
112
|
-
end
|
113
|
-
|
114
|
-
end
|
@@ -1,190 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# CMock Project - Automatic Mock Generation 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
|
-
require File.expand_path(File.dirname(__FILE__)) + "/../test_helper"
|
8
|
-
require 'cmock_generator_plugin_callback'
|
9
|
-
|
10
|
-
class CMockGeneratorPluginCallbackTest < Test::Unit::TestCase
|
11
|
-
def setup
|
12
|
-
create_mocks :config, :utils
|
13
|
-
|
14
|
-
@config.expect.callback_include_count.returns(true)
|
15
|
-
@config.expect.callback_after_arg_check.returns(false)
|
16
|
-
|
17
|
-
@cmock_generator_plugin_callback = CMockGeneratorPluginCallback.new(@config, @utils)
|
18
|
-
end
|
19
|
-
|
20
|
-
def teardown
|
21
|
-
end
|
22
|
-
|
23
|
-
should "have set up internal accessors correctly on init" do
|
24
|
-
assert_equal(@config, @cmock_generator_plugin_callback.config)
|
25
|
-
assert_equal(@utils, @cmock_generator_plugin_callback.utils)
|
26
|
-
assert_equal(6, @cmock_generator_plugin_callback.priority)
|
27
|
-
end
|
28
|
-
|
29
|
-
should "not include any additional include files" do
|
30
|
-
assert(!@cmock_generator_plugin_callback.respond_to?(:include_files))
|
31
|
-
end
|
32
|
-
|
33
|
-
should "add to instance structure" do
|
34
|
-
function = {:name => "Oak", :args => [:type => "int*", :name => "blah", :ptr? => true], :return => test_return[:int_ptr]}
|
35
|
-
expected = " CMOCK_Oak_CALLBACK Oak_CallbackFunctionPointer;\n" +
|
36
|
-
" int Oak_CallbackCalls;\n"
|
37
|
-
returned = @cmock_generator_plugin_callback.instance_structure(function)
|
38
|
-
assert_equal(expected, returned)
|
39
|
-
end
|
40
|
-
|
41
|
-
should "add mock function declaration for function without arguments" do
|
42
|
-
function = {:name => "Maple", :args_string => "void", :args => [], :return => test_return[:void]}
|
43
|
-
expected = [ "typedef void (* CMOCK_Maple_CALLBACK)(int cmock_num_calls);\n",
|
44
|
-
"void Maple_StubWithCallback(CMOCK_Maple_CALLBACK Callback);\n" ].join
|
45
|
-
returned = @cmock_generator_plugin_callback.mock_function_declarations(function)
|
46
|
-
assert_equal(expected, returned)
|
47
|
-
end
|
48
|
-
|
49
|
-
should "add mock function declaration for function without arguments when count is also turned off" do
|
50
|
-
function = {:name => "Maple", :args_string => "void", :args => [], :return => test_return[:void]}
|
51
|
-
expected = [ "typedef void (* CMOCK_Maple_CALLBACK)(void);\n",
|
52
|
-
"void Maple_StubWithCallback(CMOCK_Maple_CALLBACK Callback);\n" ].join
|
53
|
-
@cmock_generator_plugin_callback.include_count = false
|
54
|
-
returned = @cmock_generator_plugin_callback.mock_function_declarations(function)
|
55
|
-
assert_equal(expected, returned)
|
56
|
-
end
|
57
|
-
|
58
|
-
should "add mock function declaration for function with arguments" do
|
59
|
-
function = {:name => "Maple", :args_string => "int* tofu", :args => [1], :return => test_return[:void]}
|
60
|
-
expected = [ "typedef void (* CMOCK_Maple_CALLBACK)(int* tofu, int cmock_num_calls);\n",
|
61
|
-
"void Maple_StubWithCallback(CMOCK_Maple_CALLBACK Callback);\n" ].join
|
62
|
-
returned = @cmock_generator_plugin_callback.mock_function_declarations(function)
|
63
|
-
assert_equal(expected, returned)
|
64
|
-
end
|
65
|
-
|
66
|
-
should "add mock function declaration for function with return values" do
|
67
|
-
function = {:name => "Maple", :args_string => "int* tofu", :args => [1], :return => test_return[:string]}
|
68
|
-
expected = [ "typedef const char* (* CMOCK_Maple_CALLBACK)(int* tofu, int cmock_num_calls);\n",
|
69
|
-
"void Maple_StubWithCallback(CMOCK_Maple_CALLBACK Callback);\n" ].join
|
70
|
-
returned = @cmock_generator_plugin_callback.mock_function_declarations(function)
|
71
|
-
assert_equal(expected, returned)
|
72
|
-
end
|
73
|
-
|
74
|
-
should "add mock function declaration for function with return values and count is turned off" do
|
75
|
-
function = {:name => "Maple", :args_string => "int* tofu", :args => [1], :return => test_return[:string]}
|
76
|
-
expected = [ "typedef const char* (* CMOCK_Maple_CALLBACK)(int* tofu);\n",
|
77
|
-
"void Maple_StubWithCallback(CMOCK_Maple_CALLBACK Callback);\n" ].join
|
78
|
-
@cmock_generator_plugin_callback.include_count = false
|
79
|
-
returned = @cmock_generator_plugin_callback.mock_function_declarations(function)
|
80
|
-
assert_equal(expected, returned)
|
81
|
-
end
|
82
|
-
|
83
|
-
should "add mock function implementation for functions of style 'void func(void)'" do
|
84
|
-
function = {:name => "Apple", :args => [], :args_string => "void", :return => test_return[:void]}
|
85
|
-
expected = [" if (Mock.Apple_CallbackFunctionPointer != NULL)\n",
|
86
|
-
" {\n",
|
87
|
-
" Mock.Apple_CallbackFunctionPointer(Mock.Apple_CallbackCalls++);\n",
|
88
|
-
" return;\n",
|
89
|
-
" }\n"
|
90
|
-
].join
|
91
|
-
returned = @cmock_generator_plugin_callback.mock_implementation_precheck(function)
|
92
|
-
assert_equal(expected, returned)
|
93
|
-
end
|
94
|
-
|
95
|
-
should "add mock function implementation for functions of style 'void func(void)' when count turned off" do
|
96
|
-
function = {:name => "Apple", :args => [], :args_string => "void", :return => test_return[:void]}
|
97
|
-
expected = [" if (Mock.Apple_CallbackFunctionPointer != NULL)\n",
|
98
|
-
" {\n",
|
99
|
-
" Mock.Apple_CallbackFunctionPointer();\n",
|
100
|
-
" return;\n",
|
101
|
-
" }\n"
|
102
|
-
].join
|
103
|
-
@cmock_generator_plugin_callback.include_count = false
|
104
|
-
returned = @cmock_generator_plugin_callback.mock_implementation_precheck(function)
|
105
|
-
assert_equal(expected, returned)
|
106
|
-
end
|
107
|
-
|
108
|
-
should "add mock function implementation for functions of style 'int func(void)'" do
|
109
|
-
function = {:name => "Apple", :args => [], :args_string => "void", :return => test_return[:int]}
|
110
|
-
expected = [" if (Mock.Apple_CallbackFunctionPointer != NULL)\n",
|
111
|
-
" {\n",
|
112
|
-
" return Mock.Apple_CallbackFunctionPointer(Mock.Apple_CallbackCalls++);\n",
|
113
|
-
" }\n"
|
114
|
-
].join
|
115
|
-
returned = @cmock_generator_plugin_callback.mock_implementation_precheck(function)
|
116
|
-
assert_equal(expected, returned)
|
117
|
-
end
|
118
|
-
|
119
|
-
should "add mock function implementation for functions of style 'void func(int* steak, uint8_t flag)'" do
|
120
|
-
function = {:name => "Apple",
|
121
|
-
:args => [ { :type => 'int*', :name => 'steak', :ptr? => true},
|
122
|
-
{ :type => 'uint8_t', :name => 'flag', :ptr? => false} ],
|
123
|
-
:args_string => "int* steak, uint8_t flag",
|
124
|
-
:return=> test_return[:void]}
|
125
|
-
expected = [" if (Mock.Apple_CallbackFunctionPointer != NULL)\n",
|
126
|
-
" {\n",
|
127
|
-
" Mock.Apple_CallbackFunctionPointer(steak, flag, Mock.Apple_CallbackCalls++);\n",
|
128
|
-
" return;\n",
|
129
|
-
" }\n"
|
130
|
-
].join
|
131
|
-
returned = @cmock_generator_plugin_callback.mock_implementation_precheck(function)
|
132
|
-
assert_equal(expected, returned)
|
133
|
-
end
|
134
|
-
|
135
|
-
should "add mock function implementation for functions of style 'void func(int* steak, uint8_t flag)' when count turned off" do
|
136
|
-
function = {:name => "Apple",
|
137
|
-
:args => [ { :type => 'int*', :name => 'steak', :ptr? => true},
|
138
|
-
{ :type => 'uint8_t', :name => 'flag', :ptr? => false} ],
|
139
|
-
:args_string => "int* steak, uint8_t flag",
|
140
|
-
:return=> test_return[:void]}
|
141
|
-
expected = [" if (Mock.Apple_CallbackFunctionPointer != NULL)\n",
|
142
|
-
" {\n",
|
143
|
-
" Mock.Apple_CallbackFunctionPointer(steak, flag);\n",
|
144
|
-
" return;\n",
|
145
|
-
" }\n"
|
146
|
-
].join
|
147
|
-
@cmock_generator_plugin_callback.include_count = false
|
148
|
-
returned = @cmock_generator_plugin_callback.mock_implementation_precheck(function)
|
149
|
-
assert_equal(expected, returned)
|
150
|
-
end
|
151
|
-
|
152
|
-
should "add mock function implementation for functions of style 'int16_t func(int* steak, uint8_t flag)'" do
|
153
|
-
function = {:name => "Apple",
|
154
|
-
:args => [ { :type => 'int*', :name => 'steak', :ptr? => true},
|
155
|
-
{ :type => 'uint8_t', :name => 'flag', :ptr? => false} ],
|
156
|
-
:args_string => "int* steak, uint8_t flag",
|
157
|
-
:return => test_return[:int]}
|
158
|
-
expected = [" if (Mock.Apple_CallbackFunctionPointer != NULL)\n",
|
159
|
-
" {\n",
|
160
|
-
" return Mock.Apple_CallbackFunctionPointer(steak, flag, Mock.Apple_CallbackCalls++);\n",
|
161
|
-
" }\n"
|
162
|
-
].join
|
163
|
-
returned = @cmock_generator_plugin_callback.mock_implementation_precheck(function)
|
164
|
-
assert_equal(expected, returned)
|
165
|
-
end
|
166
|
-
|
167
|
-
should "add mock interfaces for functions " do
|
168
|
-
function = {:name => "Lemon",
|
169
|
-
:args => [{ :type => "char*", :name => "pescado"}],
|
170
|
-
:args_string => "char* pescado",
|
171
|
-
:return => test_return[:int]
|
172
|
-
}
|
173
|
-
|
174
|
-
expected = ["void Lemon_StubWithCallback(CMOCK_Lemon_CALLBACK Callback)\n",
|
175
|
-
"{\n",
|
176
|
-
" Mock.Lemon_CallbackFunctionPointer = Callback;\n",
|
177
|
-
"}\n\n"
|
178
|
-
].join
|
179
|
-
returned = @cmock_generator_plugin_callback.mock_interfaces(function)
|
180
|
-
assert_equal(expected, returned)
|
181
|
-
end
|
182
|
-
|
183
|
-
should "add mock destroy for functions" do
|
184
|
-
function = {:name => "Peach", :args => [], :return => test_return[:void] }
|
185
|
-
expected = " Mock.Peach_CallbackFunctionPointer = NULL;\n" +
|
186
|
-
" Mock.Peach_CallbackCalls = 0;\n"
|
187
|
-
returned = @cmock_generator_plugin_callback.mock_destroy(function)
|
188
|
-
assert_equal(expected, returned)
|
189
|
-
end
|
190
|
-
end
|
@@ -1,94 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# CMock Project - Automatic Mock Generation 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
|
-
require File.expand_path(File.dirname(__FILE__)) + "/../test_helper"
|
8
|
-
require 'cmock_generator_plugin_cexception'
|
9
|
-
|
10
|
-
class CMockGeneratorPluginCexceptionTest < Test::Unit::TestCase
|
11
|
-
def setup
|
12
|
-
create_mocks :config, :utils
|
13
|
-
@cmock_generator_plugin_cexception = CMockGeneratorPluginCexception.new(@config, @utils)
|
14
|
-
end
|
15
|
-
|
16
|
-
def teardown
|
17
|
-
end
|
18
|
-
|
19
|
-
should "have set up internal accessors correctly on init" do
|
20
|
-
assert_equal(@config, @cmock_generator_plugin_cexception.config)
|
21
|
-
assert_equal(@utils, @cmock_generator_plugin_cexception.utils)
|
22
|
-
assert_equal(7, @cmock_generator_plugin_cexception.priority)
|
23
|
-
end
|
24
|
-
|
25
|
-
should "include the cexception library" do
|
26
|
-
expected = "#include \"CException.h\"\n"
|
27
|
-
returned = @cmock_generator_plugin_cexception.include_files
|
28
|
-
assert_equal(expected, returned)
|
29
|
-
end
|
30
|
-
|
31
|
-
should "add to typedef structure mock needs" do
|
32
|
-
function = { :name => "Oak", :args => [], :return => test_return[:void] }
|
33
|
-
expected = " CEXCEPTION_T ExceptionToThrow;\n"
|
34
|
-
returned = @cmock_generator_plugin_cexception.instance_typedefs(function)
|
35
|
-
assert_equal(expected, returned)
|
36
|
-
end
|
37
|
-
|
38
|
-
should "add mock function declarations for functions without arguments" do
|
39
|
-
function = { :name => "Spruce", :args_string => "void", :return => test_return[:void] }
|
40
|
-
expected = "#define Spruce_ExpectAndThrow(cmock_to_throw) Spruce_CMockExpectAndThrow(__LINE__, cmock_to_throw)\n"+
|
41
|
-
"void Spruce_CMockExpectAndThrow(UNITY_LINE_TYPE cmock_line, CEXCEPTION_T cmock_to_throw);\n"
|
42
|
-
returned = @cmock_generator_plugin_cexception.mock_function_declarations(function)
|
43
|
-
assert_equal(expected, returned)
|
44
|
-
end
|
45
|
-
|
46
|
-
should "add mock function declarations for functions with arguments" do
|
47
|
-
function = { :name => "Spruce", :args_string => "const char* Petunia, uint32_t Lily", :args_call => "Petunia, Lily", :return => test_return[:void] }
|
48
|
-
expected = "#define Spruce_ExpectAndThrow(Petunia, Lily, cmock_to_throw) Spruce_CMockExpectAndThrow(__LINE__, Petunia, Lily, cmock_to_throw)\n" +
|
49
|
-
"void Spruce_CMockExpectAndThrow(UNITY_LINE_TYPE cmock_line, const char* Petunia, uint32_t Lily, CEXCEPTION_T cmock_to_throw);\n"
|
50
|
-
returned = @cmock_generator_plugin_cexception.mock_function_declarations(function)
|
51
|
-
assert_equal(expected, returned)
|
52
|
-
end
|
53
|
-
|
54
|
-
should "add a mock implementation" do
|
55
|
-
function = {:name => "Cherry", :args => [], :return => test_return[:void]}
|
56
|
-
expected = " if (cmock_call_instance->ExceptionToThrow != CEXCEPTION_NONE)\n {\n" +
|
57
|
-
" Throw(cmock_call_instance->ExceptionToThrow);\n }\n"
|
58
|
-
returned = @cmock_generator_plugin_cexception.mock_implementation(function)
|
59
|
-
assert_equal(expected, returned)
|
60
|
-
end
|
61
|
-
|
62
|
-
should "add mock interfaces for functions without arguments" do
|
63
|
-
function = {:name => "Pear", :args_string => "void", :args => [], :return => test_return[:void]}
|
64
|
-
@utils.expect.code_add_base_expectation("Pear").returns("mock_retval_0")
|
65
|
-
@utils.expect.code_call_argument_loader(function).returns("")
|
66
|
-
|
67
|
-
expected = ["void Pear_CMockExpectAndThrow(UNITY_LINE_TYPE cmock_line, CEXCEPTION_T cmock_to_throw)\n",
|
68
|
-
"{\n",
|
69
|
-
"mock_retval_0",
|
70
|
-
"",
|
71
|
-
" cmock_call_instance->ExceptionToThrow = cmock_to_throw;\n",
|
72
|
-
"}\n\n"
|
73
|
-
].join
|
74
|
-
returned = @cmock_generator_plugin_cexception.mock_interfaces(function)
|
75
|
-
assert_equal(expected, returned)
|
76
|
-
end
|
77
|
-
|
78
|
-
should "add a mock interfaces for functions with arguments" do
|
79
|
-
function = {:name => "Pear", :args_string => "int blah", :args => [{ :type => "int", :name => "blah" }], :return => test_return[:void]}
|
80
|
-
@utils.expect.code_add_base_expectation("Pear").returns("mock_retval_0")
|
81
|
-
@utils.expect.code_call_argument_loader(function).returns("mock_return_1")
|
82
|
-
|
83
|
-
expected = ["void Pear_CMockExpectAndThrow(UNITY_LINE_TYPE cmock_line, int blah, CEXCEPTION_T cmock_to_throw)\n",
|
84
|
-
"{\n",
|
85
|
-
"mock_retval_0",
|
86
|
-
"mock_return_1",
|
87
|
-
" cmock_call_instance->ExceptionToThrow = cmock_to_throw;\n",
|
88
|
-
"}\n\n"
|
89
|
-
].join
|
90
|
-
returned = @cmock_generator_plugin_cexception.mock_interfaces(function)
|
91
|
-
assert_equal(expected, returned)
|
92
|
-
end
|
93
|
-
|
94
|
-
end
|
@@ -1,206 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# CMock Project - Automatic Mock Generation 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
|
-
require File.expand_path(File.dirname(__FILE__)) + "/../test_helper"
|
8
|
-
require 'cmock_generator_plugin_expect'
|
9
|
-
|
10
|
-
class CMockGeneratorPluginExpectTest < Test::Unit::TestCase
|
11
|
-
def setup
|
12
|
-
create_mocks :config, :utils
|
13
|
-
|
14
|
-
#no strict ordering and args_and_calls
|
15
|
-
@config.expect.when_ptr.returns(:compare_data)
|
16
|
-
@config.expect.enforce_strict_ordering.returns(false)
|
17
|
-
@config.stubs!(:respond_to?).returns(true)
|
18
|
-
# @config.expect.ignore.returns(:args_and_calls)
|
19
|
-
@utils.expect.helpers.returns({})
|
20
|
-
@cmock_generator_plugin_expect = CMockGeneratorPluginExpect.new(@config, @utils)
|
21
|
-
|
22
|
-
#strict ordering and args_only
|
23
|
-
@config.expect.when_ptr.returns(:compare_data)
|
24
|
-
@config.expect.enforce_strict_ordering.returns(true)
|
25
|
-
@config.stubs!(:respond_to?).returns(true)
|
26
|
-
# @config.expect.ignore.returns(:args_only)
|
27
|
-
@utils.expect.helpers.returns({})
|
28
|
-
@cmock_generator_plugin_expect_strict = CMockGeneratorPluginExpect.new(@config, @utils)
|
29
|
-
end
|
30
|
-
|
31
|
-
def teardown
|
32
|
-
end
|
33
|
-
|
34
|
-
should "have set up internal accessors correctly on init" do
|
35
|
-
assert_equal(@config, @cmock_generator_plugin_expect.config)
|
36
|
-
assert_equal(@utils, @cmock_generator_plugin_expect.utils)
|
37
|
-
assert_equal(nil, @cmock_generator_plugin_expect.unity_helper)
|
38
|
-
assert_equal(5, @cmock_generator_plugin_expect.priority)
|
39
|
-
end
|
40
|
-
|
41
|
-
should "not include any additional include files" do
|
42
|
-
assert(!@cmock_generator_plugin_expect.respond_to?(:include_files))
|
43
|
-
end
|
44
|
-
|
45
|
-
should "add to typedef structure mock needs of functions of style 'void func(void)'" do
|
46
|
-
function = {:name => "Oak", :args => [], :return => test_return[:void]}
|
47
|
-
expected = ""
|
48
|
-
returned = @cmock_generator_plugin_expect.instance_typedefs(function)
|
49
|
-
assert_equal(expected, returned)
|
50
|
-
end
|
51
|
-
|
52
|
-
should "add to typedef structure mock needs of functions of style 'int func(void)'" do
|
53
|
-
function = {:name => "Elm", :args => [], :return => test_return[:int]}
|
54
|
-
expected = " int ReturnVal;\n"
|
55
|
-
returned = @cmock_generator_plugin_expect.instance_typedefs(function)
|
56
|
-
assert_equal(expected, returned)
|
57
|
-
end
|
58
|
-
|
59
|
-
should "add to typedef structure mock needs of functions of style 'void func(int chicken, char* pork)'" do
|
60
|
-
function = {:name => "Cedar", :args => [{ :name => "chicken", :type => "int"}, { :name => "pork", :type => "char*"}], :return => test_return[:void]}
|
61
|
-
expected = " int Expected_chicken;\n char* Expected_pork;\n"
|
62
|
-
returned = @cmock_generator_plugin_expect.instance_typedefs(function)
|
63
|
-
assert_equal(expected, returned)
|
64
|
-
end
|
65
|
-
|
66
|
-
should "add to typedef structure mock needs of functions of style 'int func(float beef)'" do
|
67
|
-
function = {:name => "Birch", :args => [{ :name => "beef", :type => "float"}], :return => test_return[:int]}
|
68
|
-
expected = " int ReturnVal;\n float Expected_beef;\n"
|
69
|
-
returned = @cmock_generator_plugin_expect.instance_typedefs(function)
|
70
|
-
assert_equal(expected, returned)
|
71
|
-
end
|
72
|
-
|
73
|
-
should "add to typedef structure mock needs of functions of style 'void func(void)' and global ordering" do
|
74
|
-
function = {:name => "Oak", :args => [], :return => test_return[:void]}
|
75
|
-
expected = " int CallOrder;\n"
|
76
|
-
returned = @cmock_generator_plugin_expect_strict.instance_typedefs(function)
|
77
|
-
assert_equal(expected, returned)
|
78
|
-
end
|
79
|
-
|
80
|
-
should "add mock function declaration for functions of style 'void func(void)'" do
|
81
|
-
function = {:name => "Maple", :args => [], :return => test_return[:void]}
|
82
|
-
expected = "#define Maple_Expect() Maple_CMockExpect(__LINE__)\n" +
|
83
|
-
"void Maple_CMockExpect(UNITY_LINE_TYPE cmock_line);\n"
|
84
|
-
returned = @cmock_generator_plugin_expect.mock_function_declarations(function)
|
85
|
-
assert_equal(expected, returned)
|
86
|
-
end
|
87
|
-
|
88
|
-
should "add mock function declaration for functions of style 'int func(void)'" do
|
89
|
-
function = {:name => "Spruce", :args => [], :return => test_return[:int]}
|
90
|
-
expected = "#define Spruce_ExpectAndReturn(cmock_retval) Spruce_CMockExpectAndReturn(__LINE__, cmock_retval)\n" +
|
91
|
-
"void Spruce_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, int cmock_to_return);\n"
|
92
|
-
returned = @cmock_generator_plugin_expect.mock_function_declarations(function)
|
93
|
-
assert_equal(expected, returned)
|
94
|
-
end
|
95
|
-
|
96
|
-
should "add mock function declaration for functions of style 'const char* func(int tofu)'" do
|
97
|
-
function = {:name => "Pine", :args => ["int tofu"], :args_string => "int tofu", :args_call => 'tofu', :return => test_return[:string]}
|
98
|
-
expected = "#define Pine_ExpectAndReturn(tofu, cmock_retval) Pine_CMockExpectAndReturn(__LINE__, tofu, cmock_retval)\n" +
|
99
|
-
"void Pine_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, int tofu, const char* cmock_to_return);\n"
|
100
|
-
returned = @cmock_generator_plugin_expect.mock_function_declarations(function)
|
101
|
-
assert_equal(expected, returned)
|
102
|
-
end
|
103
|
-
|
104
|
-
should "add mock function implementation for functions of style 'void func(void)'" do
|
105
|
-
function = {:name => "Apple", :args => [], :return => test_return[:void]}
|
106
|
-
expected = ""
|
107
|
-
returned = @cmock_generator_plugin_expect.mock_implementation(function)
|
108
|
-
assert_equal(expected, returned)
|
109
|
-
end
|
110
|
-
|
111
|
-
should "add mock function implementation for functions of style 'int func(int veal, unsigned int sushi)'" do
|
112
|
-
function = {:name => "Cherry", :args => [ { :type => "int", :name => "veal" }, { :type => "unsigned int", :name => "sushi" } ], :return => test_return[:int]}
|
113
|
-
|
114
|
-
@utils.expect.code_verify_an_arg_expectation(function, function[:args][0]).returns(" mocked_retval_1")
|
115
|
-
@utils.expect.code_verify_an_arg_expectation(function, function[:args][1]).returns(" mocked_retval_2")
|
116
|
-
expected = " mocked_retval_1 mocked_retval_2"
|
117
|
-
returned = @cmock_generator_plugin_expect.mock_implementation(function)
|
118
|
-
assert_equal(expected, returned)
|
119
|
-
end
|
120
|
-
|
121
|
-
should "add mock function implementation using ordering if needed" do
|
122
|
-
function = {:name => "Apple", :args => [], :return => test_return[:void]}
|
123
|
-
expected = ""
|
124
|
-
@cmock_generator_plugin_expect.ordered = true
|
125
|
-
returned = @cmock_generator_plugin_expect.mock_implementation(function)
|
126
|
-
assert_equal(expected, returned)
|
127
|
-
end
|
128
|
-
|
129
|
-
should "add mock function implementation for functions of style 'void func(int worm)' and strict ordering" do
|
130
|
-
function = {:name => "Apple", :args => [{ :type => "int", :name => "worm" }], :return => test_return[:void]}
|
131
|
-
@utils.expect.code_verify_an_arg_expectation(function, function[:args][0]).returns("mocked_retval_0")
|
132
|
-
expected = "mocked_retval_0"
|
133
|
-
@cmock_generator_plugin_expect.ordered = true
|
134
|
-
returned = @cmock_generator_plugin_expect_strict.mock_implementation(function)
|
135
|
-
assert_equal(expected, returned)
|
136
|
-
end
|
137
|
-
|
138
|
-
should "add mock interfaces for functions of style 'void func(void)'" do
|
139
|
-
function = {:name => "Pear", :args => [], :args_string => "void", :return => test_return[:void]}
|
140
|
-
@utils.expect.code_add_base_expectation("Pear").returns("mock_retval_0 ")
|
141
|
-
@utils.expect.code_call_argument_loader(function).returns("mock_retval_1 ")
|
142
|
-
expected = ["void Pear_CMockExpect(UNITY_LINE_TYPE cmock_line)\n",
|
143
|
-
"{\n",
|
144
|
-
"mock_retval_0 ",
|
145
|
-
"mock_retval_1 ",
|
146
|
-
"}\n\n"
|
147
|
-
].join
|
148
|
-
returned = @cmock_generator_plugin_expect.mock_interfaces(function)
|
149
|
-
assert_equal(expected, returned)
|
150
|
-
end
|
151
|
-
|
152
|
-
should "add mock interfaces for functions of style 'int func(void)'" do
|
153
|
-
function = {:name => "Orange", :args => [], :args_string => "void", :return => test_return[:int]}
|
154
|
-
@utils.expect.code_add_base_expectation("Orange").returns("mock_retval_0 ")
|
155
|
-
@utils.expect.code_call_argument_loader(function).returns("mock_retval_1 ")
|
156
|
-
@utils.expect.code_assign_argument_quickly("cmock_call_instance->ReturnVal", function[:return]).returns("mock_retval_2")
|
157
|
-
expected = ["void Orange_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, int cmock_to_return)\n",
|
158
|
-
"{\n",
|
159
|
-
"mock_retval_0 ",
|
160
|
-
"mock_retval_1 ",
|
161
|
-
"mock_retval_2",
|
162
|
-
"}\n\n"
|
163
|
-
].join
|
164
|
-
returned = @cmock_generator_plugin_expect.mock_interfaces(function)
|
165
|
-
assert_equal(expected, returned)
|
166
|
-
end
|
167
|
-
|
168
|
-
should "add mock interfaces for functions of style 'int func(char* pescado)'" do
|
169
|
-
function = {:name => "Lemon", :args => [{ :type => "char*", :name => "pescado"}], :args_string => "char* pescado", :return => test_return[:int]}
|
170
|
-
@utils.expect.code_add_base_expectation("Lemon").returns("mock_retval_0 ")
|
171
|
-
@utils.expect.code_call_argument_loader(function).returns("mock_retval_1 ")
|
172
|
-
@utils.expect.code_assign_argument_quickly("cmock_call_instance->ReturnVal", function[:return]).returns("mock_retval_2")
|
173
|
-
expected = ["void Lemon_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, char* pescado, int cmock_to_return)\n",
|
174
|
-
"{\n",
|
175
|
-
"mock_retval_0 ",
|
176
|
-
"mock_retval_1 ",
|
177
|
-
"mock_retval_2",
|
178
|
-
"}\n\n"
|
179
|
-
].join
|
180
|
-
returned = @cmock_generator_plugin_expect.mock_interfaces(function)
|
181
|
-
assert_equal(expected, returned)
|
182
|
-
end
|
183
|
-
|
184
|
-
should "add mock interfaces for functions when using ordering" do
|
185
|
-
function = {:name => "Pear", :args => [], :args_string => "void", :return => test_return[:void]}
|
186
|
-
@utils.expect.code_add_base_expectation("Pear").returns("mock_retval_0 ")
|
187
|
-
@utils.expect.code_call_argument_loader(function).returns("mock_retval_1 ")
|
188
|
-
expected = ["void Pear_CMockExpect(UNITY_LINE_TYPE cmock_line)\n",
|
189
|
-
"{\n",
|
190
|
-
"mock_retval_0 ",
|
191
|
-
"mock_retval_1 ",
|
192
|
-
"}\n\n"
|
193
|
-
].join
|
194
|
-
@cmock_generator_plugin_expect.ordered = true
|
195
|
-
returned = @cmock_generator_plugin_expect.mock_interfaces(function)
|
196
|
-
assert_equal(expected, returned)
|
197
|
-
end
|
198
|
-
|
199
|
-
should "add mock verify lines" do
|
200
|
-
function = {:name => "Banana" }
|
201
|
-
expected = " UNITY_TEST_ASSERT(CMOCK_GUTS_NONE == Mock.Banana_CallInstance, cmock_line, \"Function 'Banana' called less times than expected.\");\n"
|
202
|
-
returned = @cmock_generator_plugin_expect.mock_verify(function)
|
203
|
-
assert_equal(expected, returned)
|
204
|
-
end
|
205
|
-
|
206
|
-
end
|