ceedling 0.30.0 → 0.31.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/Gemfile +1 -0
- data/Gemfile.lock +4 -2
- data/README.md +9 -6
- data/assets/auto_link_deep_dependencies/src/a.c +7 -0
- data/assets/auto_link_deep_dependencies/src/b.c +7 -0
- data/assets/auto_link_deep_dependencies/src/c.c +8 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/a.h +6 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/b.h +6 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/c.h +6 -0
- data/assets/auto_link_deep_dependencies/src/internal_inc/never_compiled.h +6 -0
- data/assets/auto_link_deep_dependencies/src/never_compiled.c +6 -0
- data/assets/auto_link_deep_dependencies/test/test_a.c +11 -0
- data/assets/auto_link_deep_dependencies/test/test_b.c +11 -0
- data/assets/auto_link_deep_dependencies/test/test_c.c +11 -0
- data/assets/test_example_file_unity_printf.c +12 -0
- data/assets/test_example_with_parameterized_tests.c +19 -0
- data/assets/tests_with_defines/src/adc_hardware.c +11 -0
- data/assets/tests_with_defines/src/adc_hardware.h +6 -0
- data/assets/tests_with_defines/src/adc_hardware_configurator.c +11 -0
- data/assets/tests_with_defines/src/adc_hardware_configurator.h +10 -0
- data/assets/tests_with_defines/test/test_adc_hardware.c +21 -0
- data/assets/tests_with_defines/test/test_adc_hardware_special.c +21 -0
- data/bin/ceedling +0 -1
- data/ceedling.gemspec +5 -4
- data/ceedling.sublime-project +28 -0
- data/ceedling.sublime-workspace +452 -0
- data/config/test_environment.rb +0 -1
- data/docs/CeedlingPacket.md +59 -6
- data/examples/blinky/project.yml +3 -1
- data/examples/blinky/rakefile.rb +1 -2
- data/examples/temp_sensor/build/test/cache/AdcConductor.h +20 -0
- data/examples/temp_sensor/build/test/cache/AdcHardware.h +16 -0
- data/examples/temp_sensor/build/test/cache/AdcHardwareConfigurator.h +14 -0
- data/examples/temp_sensor/build/test/cache/AdcModel.h +20 -0
- data/examples/temp_sensor/build/test/cache/AdcTemperatureSensor.h +14 -0
- data/examples/temp_sensor/build/test/cache/Executor.h +12 -0
- data/examples/temp_sensor/build/test/cache/IntrinsicsWrapper.h +9 -0
- data/examples/temp_sensor/build/test/cache/Model.h +10 -0
- data/examples/temp_sensor/build/test/cache/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/cache/TemperatureCalculator.h +10 -0
- data/examples/temp_sensor/build/test/cache/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/cache/TestAdcConductor.c +169 -0
- data/examples/temp_sensor/build/test/cache/TestAdcHardware.c +82 -0
- data/examples/temp_sensor/build/test/cache/TestAdcModel.c +59 -0
- data/examples/temp_sensor/build/test/cache/TestExecutor.c +63 -0
- data/examples/temp_sensor/build/test/cache/TestMain.c +43 -0
- data/examples/temp_sensor/build/test/cache/TestModel.c +34 -0
- data/examples/temp_sensor/build/test/cache/TestTaskScheduler.c +204 -0
- data/examples/temp_sensor/build/test/cache/TestTemperatureCalculator.c +70 -0
- data/examples/temp_sensor/build/test/cache/TestTemperatureFilter.c +154 -0
- data/examples/temp_sensor/build/test/cache/TestTimerConductor.c +57 -0
- data/examples/temp_sensor/build/test/cache/TestTimerHardware.c +47 -0
- data/examples/temp_sensor/build/test/cache/TestTimerModel.c +31 -0
- data/examples/temp_sensor/build/test/cache/TestUsartBaudRateRegisterCalculator.c +38 -0
- data/examples/temp_sensor/build/test/cache/TestUsartConductor.c +73 -0
- data/examples/temp_sensor/build/test/cache/TestUsartHardware.c +66 -0
- data/examples/temp_sensor/build/test/cache/TestUsartModel.c +73 -0
- data/examples/temp_sensor/build/test/cache/TimerConductor.h +12 -0
- data/examples/temp_sensor/build/test/cache/TimerConfigurator.h +24 -0
- data/examples/temp_sensor/build/test/cache/TimerHardware.h +10 -0
- data/examples/temp_sensor/build/test/cache/TimerInterruptHandler.h +14 -0
- data/examples/temp_sensor/build/test/cache/TimerModel.h +10 -0
- data/examples/temp_sensor/build/test/cache/UsartBaudRateRegisterCalculator.h +10 -0
- data/examples/temp_sensor/build/test/cache/UsartConductor.h +9 -0
- data/examples/temp_sensor/build/test/cache/UsartConfigurator.h +20 -0
- data/examples/temp_sensor/build/test/cache/UsartHardware.h +12 -0
- data/examples/temp_sensor/build/test/cache/UsartModel.h +14 -0
- data/examples/temp_sensor/build/test/cache/UsartPutChar.h +10 -0
- data/examples/temp_sensor/build/test/cache/defines_dependency.yml +77 -0
- data/examples/temp_sensor/build/test/cache/input.yml +310 -0
- data/examples/temp_sensor/build/test/dependencies/AdcConductor.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/AdcHardware.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/AdcModel.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/Executor.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/Main.d +11 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcConductor.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcHardware.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcHardwareConfigurator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockAdcTemperatureSensor.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockExecutor.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockIntrinsicsWrapper.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockTaskScheduler.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockTemperatureCalculator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTemperatureFilter.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerConfigurator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerHardware.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerInterruptHandler.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockTimerModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartConfigurator.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartHardware.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/MockUsartPutChar.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/Model.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TaskScheduler.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TemperatureCalculator.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TemperatureFilter.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcConductor.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcConductor_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcHardware.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcHardware_runner.d +9 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcModel.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestAdcModel_runner.d +10 -0
- data/examples/temp_sensor/build/test/dependencies/TestExecutor.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestExecutor_runner.d +11 -0
- data/examples/temp_sensor/build/test/dependencies/TestMain.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestMain_runner.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestModel.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestModel_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerConductor_runner.d +10 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerHardware.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerHardware_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerModel.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerModel_runner.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d +5 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartConductor.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartConductor_runner.d +9 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartHardware.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartHardware_runner.d +8 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartModel.d +7 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartModel_runner.d +9 -0
- data/examples/temp_sensor/build/test/dependencies/TimerConductor.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/TimerHardware.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/TimerModel.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/UnityHelper.d +4 -0
- data/examples/temp_sensor/build/test/dependencies/UsartBaudRateRegisterCalculator.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/UsartConductor.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/UsartHardware.d +2 -0
- data/examples/temp_sensor/build/test/dependencies/UsartModel.d +3 -0
- data/examples/temp_sensor/build/test/dependencies/cmock.d +6 -0
- data/examples/temp_sensor/build/test/dependencies/unity.d +4 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcConductor.c +391 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcConductor.h +64 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardware.c +313 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardware.h +58 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.c +218 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcModel.c +453 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcModel.h +64 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.c +252 -0
- data/examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockExecutor.c +174 -0
- data/examples/temp_sensor/build/test/mocks/MockExecutor.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.c +157 -0
- data/examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockModel.c +96 -0
- data/examples/temp_sensor/build/test/mocks/MockModel.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockTaskScheduler.c +326 -0
- data/examples/temp_sensor/build/test/mocks/MockTaskScheduler.h +58 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.c +126 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureFilter.c +248 -0
- data/examples/temp_sensor/build/test/mocks/MockTemperatureFilter.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConductor.c +157 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConductor.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConfigurator.c +523 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerConfigurator.h +82 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerHardware.c +96 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerHardware.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.c +248 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerModel.c +109 -0
- data/examples/temp_sensor/build/test/mocks/MockTimerModel.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.c +133 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.h +40 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConductor.c +157 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConductor.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConfigurator.c +414 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartConfigurator.h +70 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartHardware.c +183 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartHardware.h +46 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartModel.c +269 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartModel.h +52 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartPutChar.c +109 -0
- data/examples/temp_sensor/build/test/mocks/MockUsartPutChar.h +40 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestMain.out +0 -0
- data/examples/temp_sensor/build/test/out/TestModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel.out +0 -0
- data/examples/temp_sensor/build/test/out/c/AdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/AdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/AdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/Executor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/Main.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcHardwareConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockAdcTemperatureSensor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockExecutor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockIntrinsicsWrapper.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerInterruptHandler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockTimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/MockUsartPutChar.o +0 -0
- data/examples/temp_sensor/build/test/out/c/Model.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestAdcModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestExecutor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestExecutor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestMain.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestMain_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTaskScheduler_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureCalculator_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTemperatureFilter_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestTimerModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartBaudRateRegisterCalculator_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TestUsartModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/TimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/c/UsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/c/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/c/unity.o +0 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcConductor.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcHardware.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcHardwareConfigurator.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcModel.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/AdcTemperatureSensor.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/Executor.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/IntrinsicsWrapper.h +9 -0
- data/examples/temp_sensor/build/test/preprocess/files/Model.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TemperatureCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor.c +169 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware.c +82 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel.c +59 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor.c +63 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestMain.c +43 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestModel.c +34 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTaskScheduler.c +204 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureCalculator.c +70 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureFilter.c +154 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor.c +57 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware.c +47 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel.c +31 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator.c +38 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor.c +73 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware.c +66 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel.c +73 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerConductor.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerConfigurator.h +24 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerHardware.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerInterruptHandler.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TimerModel.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartBaudRateRegisterCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartConductor.h +9 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartConfigurator.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartHardware.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartModel.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/UsartPutChar.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcConductor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcHardware.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcHardwareConfigurator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcModel.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/AdcTemperatureSensor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/Executor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/IntrinsicsWrapper.h +1 -0
- data/examples/temp_sensor/build/test/preprocess/includes/Model.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TaskScheduler.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TemperatureCalculator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TemperatureFilter.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware.c +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor.c +9 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestMain.c +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestModel.c +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTaskScheduler.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureCalculator.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureFilter.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware.c +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel.c +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator.c +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware.c +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel.c +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerConductor.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerConfigurator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerHardware.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerInterruptHandler.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TimerModel.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartBaudRateRegisterCalculator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartConductor.h +1 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartConfigurator.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartHardware.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartModel.h +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/UsartPutChar.h +2 -0
- data/examples/temp_sensor/build/test/results/TestAdcConductor.pass +46 -0
- data/examples/temp_sensor/build/test/results/TestAdcHardware.pass +30 -0
- data/examples/temp_sensor/build/test/results/TestAdcModel.pass +26 -0
- data/examples/temp_sensor/build/test/results/TestExecutor.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestMain.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestModel.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestTaskScheduler.pass +46 -0
- data/examples/temp_sensor/build/test/results/TestTemperatureCalculator.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestTemperatureFilter.pass +30 -0
- data/examples/temp_sensor/build/test/results/TestTimerConductor.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestTimerHardware.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestTimerModel.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestUsartBaudRateRegisterCalculator.pass +18 -0
- data/examples/temp_sensor/build/test/results/TestUsartConductor.pass +26 -0
- data/examples/temp_sensor/build/test/results/TestUsartHardware.pass +22 -0
- data/examples/temp_sensor/build/test/results/TestUsartModel.pass +30 -0
- data/examples/temp_sensor/build/test/runners/TestAdcConductor_runner.c +105 -0
- data/examples/temp_sensor/build/test/runners/TestAdcHardware_runner.c +97 -0
- data/examples/temp_sensor/build/test/runners/TestAdcModel_runner.c +99 -0
- data/examples/temp_sensor/build/test/runners/TestExecutor_runner.c +105 -0
- data/examples/temp_sensor/build/test/runners/TestMain_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestModel_runner.c +91 -0
- data/examples/temp_sensor/build/test/runners/TestTaskScheduler_runner.c +95 -0
- data/examples/temp_sensor/build/test/runners/TestTemperatureCalculator_runner.c +83 -0
- data/examples/temp_sensor/build/test/runners/TestTemperatureFilter_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestTimerConductor_runner.c +97 -0
- data/examples/temp_sensor/build/test/runners/TestTimerHardware_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestTimerModel_runner.c +87 -0
- data/examples/temp_sensor/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c +81 -0
- data/examples/temp_sensor/build/test/runners/TestUsartConductor_runner.c +99 -0
- data/examples/temp_sensor/build/test/runners/TestUsartHardware_runner.c +93 -0
- data/examples/temp_sensor/build/test/runners/TestUsartModel_runner.c +97 -0
- data/examples/temp_sensor/project.yml +3 -1
- data/lib/ceedling/configurator.rb +6 -1
- data/lib/ceedling/configurator_builder.rb +18 -6
- data/lib/ceedling/configurator_setup.rb +1 -0
- data/lib/ceedling/constants.rb +1 -1
- data/lib/ceedling/defaults.rb +23 -0
- data/lib/ceedling/objects.yml +2 -0
- data/lib/ceedling/preprocessinator.rb +17 -8
- data/lib/ceedling/preprocessinator_extractor.rb +23 -0
- data/lib/ceedling/preprocessinator_file_handler.rb +13 -0
- data/lib/ceedling/preprocessinator_includes_handler.rb +61 -53
- data/lib/ceedling/project_config_manager.rb +2 -2
- data/lib/ceedling/rakefile.rb +0 -1
- data/lib/ceedling/rules_tests.rake +1 -1
- data/lib/ceedling/setupinator.rb +1 -1
- data/lib/ceedling/tasks_tests.rake +8 -6
- data/lib/ceedling/test_invoker.rb +1 -0
- data/lib/ceedling/version.rb +1 -1
- data/out.fail +24 -0
- data/plugins/bullseye/bullseye.rake +5 -5
- data/plugins/dependencies/README.md +1 -1
- data/plugins/dependencies/dependencies.rake +3 -0
- data/plugins/dependencies/lib/dependencies.rb +9 -3
- data/plugins/gcov/README.md +21 -0
- data/plugins/gcov/config/defaults.yml +4 -0
- data/plugins/gcov/gcov.rake +5 -5
- data/plugins/gcov/lib/gcov.rb +8 -5
- data/plugins/gcov/lib/gcovr_reportinator.rb +2 -2
- data/plugins/gcov/lib/reportgenerator_reportinator.rb +45 -3
- data/spec/gcov/gcov_deployment_spec.rb +1 -0
- data/spec/gcov/gcov_test_cases_spec.rb +71 -2
- data/spec/preprocessinator_extractor_spec.rb +36 -0
- data/spec/preprocessinator_includes_handler_spec.rb +70 -19
- data/spec/spec_helper.rb +0 -1
- data/spec/spec_system_helper.rb +119 -79
- data/spec/system/deployment_spec.rb +30 -0
- data/vendor/c_exception/README.md +4 -6
- data/vendor/c_exception/docs/CException.md +2 -2
- data/vendor/c_exception/lib/CException.h +1 -1
- data/vendor/c_exception/lib/meson.build +2 -2
- data/vendor/c_exception/meson.build +2 -36
- data/vendor/cmock/README.md +9 -4
- data/vendor/cmock/docs/CMock_Summary.md +26 -1
- data/vendor/cmock/lib/cmock.rb +16 -9
- data/vendor/cmock/lib/cmock_config.rb +1 -0
- data/vendor/cmock/lib/cmock_generator.rb +27 -9
- data/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +1 -0
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_stateless.rb +85 -0
- data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +4 -4
- data/vendor/cmock/lib/cmock_generator_utils.rb +6 -3
- data/vendor/cmock/lib/cmock_header_parser.rb +40 -14
- data/vendor/cmock/meson.build +1 -37
- data/vendor/cmock/src/cmock.h +13 -7
- data/vendor/cmock/src/meson.build +1 -1
- data/vendor/cmock/test/system/test_interactions/ignore_and_return_stateless.yml +325 -0
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +3 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +12 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_stateless_test.rb +116 -0
- data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +4 -4
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +14 -9
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +129 -3
- data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +2 -1
- data/vendor/cmock/vendor/c_exception/README.md +4 -6
- data/vendor/cmock/vendor/c_exception/docs/CException.md +2 -2
- data/vendor/cmock/vendor/c_exception/lib/CException.h +1 -1
- data/vendor/cmock/vendor/c_exception/lib/meson.build +2 -2
- data/vendor/cmock/vendor/c_exception/meson.build +2 -36
- data/vendor/cmock/vendor/unity/CMakeLists.txt +32 -6
- data/vendor/cmock/vendor/unity/LICENSE.txt +1 -1
- data/vendor/cmock/vendor/unity/README.md +13 -4
- data/vendor/cmock/vendor/unity/auto/generate_module.rb +11 -10
- data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +2 -2
- data/vendor/cmock/vendor/unity/auto/run_test.erb +1 -1
- data/vendor/cmock/vendor/unity/meson.build +1 -35
- data/vendor/cmock/vendor/unity/src/meson.build +1 -1
- data/vendor/cmock/vendor/unity/src/unity.c +5 -4
- data/vendor/cmock/vendor/unity/src/unity.h +6 -6
- data/vendor/cmock/vendor/unity/src/unity_internals.h +15 -6
- data/vendor/cmock/vendor/unity/test/Makefile +1 -0
- data/vendor/cmock/vendor/unity/test/rakefile_helper.rb +2 -2
- data/vendor/unity/CMakeLists.txt +32 -6
- data/vendor/unity/LICENSE.txt +1 -1
- data/vendor/unity/README.md +13 -4
- data/vendor/unity/auto/generate_module.rb +11 -10
- data/vendor/unity/auto/generate_test_runner.rb +2 -2
- data/vendor/unity/auto/run_test.erb +1 -1
- data/vendor/unity/meson.build +1 -35
- data/vendor/unity/src/meson.build +1 -1
- data/vendor/unity/src/unity.c +5 -4
- data/vendor/unity/src/unity.h +6 -6
- data/vendor/unity/src/unity_internals.h +15 -6
- data/vendor/unity/test/Makefile +1 -0
- data/vendor/unity/test/rakefile_helper.rb +2 -2
- metadata +409 -271
- data/assets/project_with_guts_gcov_abortonuncovered.yml +0 -93
- data/examples/temp_sensor/rakefile.rb +0 -6
- data/vendor/c_exception/vendor/unity/README.md +0 -220
- data/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -118
- data/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -308
- data/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -437
- data/vendor/c_exception/vendor/unity/auto/parse_output.rb +0 -220
- data/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb +0 -252
- data/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -25
- data/vendor/c_exception/vendor/unity/auto/type_sanitizer.rb +0 -6
- data/vendor/c_exception/vendor/unity/auto/unity_test_summary.py +0 -139
- data/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -136
- data/vendor/c_exception/vendor/unity/auto/unity_to_junit.py +0 -146
- data/vendor/c_exception/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +0 -207
- data/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
- data/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.md +0 -716
- data/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.md +0 -398
- data/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.md +0 -191
- data/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.md +0 -242
- data/vendor/c_exception/vendor/unity/docs/license.txt +0 -21
- data/vendor/c_exception/vendor/unity/examples/example_1/makefile +0 -71
- data/vendor/c_exception/vendor/unity/examples/example_1/readme.txt +0 -5
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +0 -24
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h +0 -3
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h +0 -2
- data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +0 -62
- data/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +0 -31
- data/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +0 -53
- data/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +0 -57
- data/vendor/c_exception/vendor/unity/examples/example_2/makefile +0 -70
- data/vendor/c_exception/vendor/unity/examples/example_2/readme.txt +0 -5
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c +0 -24
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h +0 -3
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h +0 -2
- data/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c +0 -64
- data/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c +0 -33
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +0 -9
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c +0 -12
- data/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c +0 -10
- data/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h +0 -12
- data/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb +0 -43
- data/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb +0 -249
- data/vendor/c_exception/vendor/unity/examples/example_3/readme.txt +0 -13
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c +0 -24
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h +0 -3
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c +0 -11
- data/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h +0 -2
- data/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml +0 -46
- data/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c +0 -62
- data/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c +0 -31
- data/vendor/c_exception/vendor/unity/examples/unity_config.h +0 -237
- data/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt +0 -26
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -48
- data/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -432
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -83
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -51
- data/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -47
- data/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile +0 -74
- data/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -22
- data/vendor/c_exception/vendor/unity/extras/fixture/test/template_fixture_tests.c +0 -39
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -543
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -57
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -57
- data/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/vendor/c_exception/vendor/unity/src/unity.c +0 -1517
- data/vendor/c_exception/vendor/unity/src/unity.h +0 -339
- data/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -784
- data/vendor/c_exception/vendor/unity/test/Makefile +0 -63
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -61
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -57
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c +0 -55
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.h +0 -15
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -80
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -76
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c +0 -75
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.h +0 -13
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -77
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -89
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -90
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -67
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -70
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -58
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -67
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -70
- data/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -71
- data/vendor/c_exception/vendor/unity/test/rakefile +0 -125
- data/vendor/c_exception/vendor/unity/test/rakefile_helper.rb +0 -260
- data/vendor/c_exception/vendor/unity/test/spec/generate_module_existing_file_spec.rb +0 -158
- data/vendor/c_exception/vendor/unity/test/targets/clang_file.yml +0 -78
- data/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml +0 -78
- data/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml +0 -49
- data/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml +0 -50
- data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml +0 -47
- data/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml +0 -59
- data/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml +0 -47
- data/vendor/c_exception/vendor/unity/test/targets/hitech_picc18.yml +0 -101
- data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml +0 -90
- data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml +0 -80
- data/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml +0 -80
- data/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -94
- data/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml +0 -84
- data/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml +0 -95
- data/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml +0 -86
- data/vendor/c_exception/vendor/unity/test/testdata/CException.h +0 -11
- data/vendor/c_exception/vendor/unity/test/testdata/Defs.h +0 -8
- data/vendor/c_exception/vendor/unity/test/testdata/cmock.h +0 -14
- data/vendor/c_exception/vendor/unity/test/testdata/mockMock.h +0 -13
- data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c +0 -183
- data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +0 -67
- data/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +0 -192
- data/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb +0 -1252
- data/vendor/c_exception/vendor/unity/test/tests/testparameterized.c +0 -110
- data/vendor/c_exception/vendor/unity/test/tests/testunity.c +0 -4993
- data/vendor/cmock/vendor/c_exception/vendor/unity/README.md +0 -220
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_prompt.rb +0 -118
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/colour_reporter.rb +0 -39
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_config.yml +0 -36
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_module.rb +0 -308
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/generate_test_runner.rb +0 -437
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/parse_output.rb +0 -220
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/stylize_as_junit.rb +0 -252
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/test_file_filter.rb +0 -25
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/type_sanitizer.rb +0 -6
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.py +0 -139
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_test_summary.rb +0 -136
- data/vendor/cmock/vendor/c_exception/vendor/unity/auto/unity_to_junit.py +0 -146
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +0 -207
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsCheatSheetSuitableforPrintingandPossiblyFraming.pdf +0 -0
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityAssertionsReference.md +0 -716
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityConfigurationGuide.md +0 -398
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityGettingStartedGuide.md +0 -191
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/UnityHelperScriptsGuide.md +0 -242
- data/vendor/cmock/vendor/c_exception/vendor/unity/docs/license.txt +0 -21
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/makefile +0 -71
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/readme.txt +0 -5
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.c +0 -24
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode.h +0 -3
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/src/ProductionCode2.h +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode.c +0 -62
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/TestProductionCode2.c +0 -31
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode2_Runner.c +0 -53
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_1/test/test_runners/TestProductionCode_Runner.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/makefile +0 -70
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/readme.txt +0 -5
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.c +0 -24
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode.h +0 -3
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/src/ProductionCode2.h +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode.c +0 -64
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/TestProductionCode2.c +0 -33
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +0 -9
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_2/test/test_runners/all_tests.c +0 -12
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.c +0 -10
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/helper/UnityHelper.h +0 -12
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile.rb +0 -43
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/rakefile_helper.rb +0 -249
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/readme.txt +0 -13
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.c +0 -24
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode.h +0 -3
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.c +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/src/ProductionCode2.h +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/target_gcc_32.yml +0 -46
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode.c +0 -62
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/example_3/test/TestProductionCode2.c +0 -31
- data/vendor/cmock/vendor/c_exception/vendor/unity/examples/unity_config.h +0 -237
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/eclipse/error_parsers.txt +0 -26
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile.rb +0 -48
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/rakefile_helper.rb +0 -178
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/readme.txt +0 -9
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.c +0 -432
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture.h +0 -83
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_internals.h +0 -51
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/src/unity_fixture_malloc_overrides.h +0 -47
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/Makefile +0 -74
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/main/AllTests.c +0 -22
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/template_fixture_tests.c +0 -39
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_Test.c +0 -543
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/extras/fixture/test/unity_output_Spy.h +0 -17
- data/vendor/cmock/vendor/c_exception/vendor/unity/release/build.info +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/release/version.info +0 -2
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.c +0 -1517
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity.h +0 -339
- data/vendor/cmock/vendor/c_exception/vendor/unity/src/unity_internals.h +0 -784
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/Makefile +0 -63
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_cmd.c +0 -61
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_def.c +0 -57
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.c +0 -55
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_head1.h +0 -15
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_cmd.c +0 -80
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_def.c +0 -76
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.c +0 -75
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_head1.h +0 -13
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new1.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_new2.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_param.c +0 -77
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run1.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_run2.c +0 -89
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_mock_yaml.c +0 -90
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new1.c +0 -67
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_new2.c +0 -70
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_param.c +0 -58
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run1.c +0 -67
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_run2.c +0 -70
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/expectdata/testsample_yaml.c +0 -71
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile +0 -125
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/rakefile_helper.rb +0 -260
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/spec/generate_module_existing_file_spec.rb +0 -158
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_file.yml +0 -78
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/clang_strict.yml +0 -78
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_32.yml +0 -49
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_64.yml +0 -50
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_limits.yml +0 -47
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_auto_stdint.yml +0 -59
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/gcc_manual_math.yml +0 -47
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/hitech_picc18.yml +0 -101
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v4.yml +0 -90
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5.yml +0 -80
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_arm_v5_3.yml +0 -80
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +0 -94
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_cortexm3_v5.yml +0 -84
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_msp430.yml +0 -95
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/targets/iar_sh2a_v6.yml +0 -86
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/CException.h +0 -11
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/Defs.h +0 -8
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/cmock.h +0 -14
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/mockMock.h +0 -13
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGenerator.c +0 -183
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +0 -67
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +0 -192
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/test_generate_test_runner.rb +0 -1252
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testparameterized.c +0 -110
- data/vendor/cmock/vendor/c_exception/vendor/unity/test/tests/testunity.c +0 -4993
- data/vendor/deep_merge/MIT-LICENSE +0 -20
- data/vendor/deep_merge/README +0 -94
- data/vendor/deep_merge/Rakefile +0 -28
- data/vendor/deep_merge/lib/deep_merge.rb +0 -211
- data/vendor/deep_merge/pkg/deep_merge-0.1.0.gem +0 -0
- data/vendor/deep_merge/test/test_deep_merge.rb +0 -553
@@ -1,220 +0,0 @@
|
|
1
|
-
Unity Test API
|
2
|
-
==============
|
3
|
-
|
4
|
-
[](https://travis-ci.org/ThrowTheSwitch/Unity)
|
5
|
-
__Copyright (c) 2007 - 2017 Unity Project by Mike Karlesky, Mark VanderVoord, and Greg Williams__
|
6
|
-
|
7
|
-
Running Tests
|
8
|
-
-------------
|
9
|
-
|
10
|
-
RUN_TEST(func, linenum)
|
11
|
-
|
12
|
-
Each Test is run within the macro `RUN_TEST`. This macro performs necessary setup before the test is called and handles cleanup and result tabulation afterwards.
|
13
|
-
|
14
|
-
Ignoring Tests
|
15
|
-
--------------
|
16
|
-
|
17
|
-
There are times when a test is incomplete or not valid for some reason. At these times, TEST_IGNORE can be called. Control will immediately be returned to the caller of the test, and no failures will be returned.
|
18
|
-
|
19
|
-
TEST_IGNORE()
|
20
|
-
|
21
|
-
Ignore this test and return immediately
|
22
|
-
|
23
|
-
TEST_IGNORE_MESSAGE (message)
|
24
|
-
|
25
|
-
Ignore this test and return immediately. Output a message stating why the test was ignored.
|
26
|
-
|
27
|
-
Aborting Tests
|
28
|
-
--------------
|
29
|
-
|
30
|
-
There are times when a test will contain an infinite loop on error conditions, or there may be reason to escape from the test early without executing the rest of the test. A pair of macros support this functionality in Unity. The first `TEST_PROTECT` sets up the feature, and handles emergency abort cases. `TEST_ABORT` can then be used at any time within the tests to return to the last `TEST_PROTECT` call.
|
31
|
-
|
32
|
-
TEST_PROTECT()
|
33
|
-
|
34
|
-
Setup and Catch macro
|
35
|
-
|
36
|
-
TEST_ABORT()
|
37
|
-
|
38
|
-
Abort Test macro
|
39
|
-
|
40
|
-
Example:
|
41
|
-
|
42
|
-
main()
|
43
|
-
{
|
44
|
-
if (TEST_PROTECT())
|
45
|
-
{
|
46
|
-
MyTest();
|
47
|
-
}
|
48
|
-
}
|
49
|
-
|
50
|
-
If MyTest calls `TEST_ABORT`, program control will immediately return to `TEST_PROTECT` with a return value of zero.
|
51
|
-
|
52
|
-
|
53
|
-
Unity Assertion Summary
|
54
|
-
=======================
|
55
|
-
|
56
|
-
Basic Validity Tests
|
57
|
-
--------------------
|
58
|
-
|
59
|
-
TEST_ASSERT_TRUE(condition)
|
60
|
-
|
61
|
-
Evaluates whatever code is in condition and fails if it evaluates to false
|
62
|
-
|
63
|
-
TEST_ASSERT_FALSE(condition)
|
64
|
-
|
65
|
-
Evaluates whatever code is in condition and fails if it evaluates to true
|
66
|
-
|
67
|
-
TEST_ASSERT(condition)
|
68
|
-
|
69
|
-
Another way of calling `TEST_ASSERT_TRUE`
|
70
|
-
|
71
|
-
TEST_ASSERT_UNLESS(condition)
|
72
|
-
|
73
|
-
Another way of calling `TEST_ASSERT_FALSE`
|
74
|
-
|
75
|
-
TEST_FAIL()
|
76
|
-
TEST_FAIL_MESSAGE(message)
|
77
|
-
|
78
|
-
This test is automatically marked as a failure. The message is output stating why.
|
79
|
-
|
80
|
-
Numerical Assertions: Integers
|
81
|
-
------------------------------
|
82
|
-
|
83
|
-
TEST_ASSERT_EQUAL_INT(expected, actual)
|
84
|
-
TEST_ASSERT_EQUAL_INT8(expected, actual)
|
85
|
-
TEST_ASSERT_EQUAL_INT16(expected, actual)
|
86
|
-
TEST_ASSERT_EQUAL_INT32(expected, actual)
|
87
|
-
TEST_ASSERT_EQUAL_INT64(expected, actual)
|
88
|
-
|
89
|
-
Compare two integers for equality and display errors as signed integers. A cast will be performed
|
90
|
-
to your natural integer size so often this can just be used. When you need to specify the exact size,
|
91
|
-
like when comparing arrays, you can use a specific version:
|
92
|
-
|
93
|
-
TEST_ASSERT_EQUAL_UINT(expected, actual)
|
94
|
-
TEST_ASSERT_EQUAL_UINT8(expected, actual)
|
95
|
-
TEST_ASSERT_EQUAL_UINT16(expected, actual)
|
96
|
-
TEST_ASSERT_EQUAL_UINT32(expected, actual)
|
97
|
-
TEST_ASSERT_EQUAL_UINT64(expected, actual)
|
98
|
-
|
99
|
-
Compare two integers for equality and display errors as unsigned integers. Like INT, there are
|
100
|
-
variants for different sizes also.
|
101
|
-
|
102
|
-
TEST_ASSERT_EQUAL_HEX(expected, actual)
|
103
|
-
TEST_ASSERT_EQUAL_HEX8(expected, actual)
|
104
|
-
TEST_ASSERT_EQUAL_HEX16(expected, actual)
|
105
|
-
TEST_ASSERT_EQUAL_HEX32(expected, actual)
|
106
|
-
TEST_ASSERT_EQUAL_HEX64(expected, actual)
|
107
|
-
|
108
|
-
Compares two integers for equality and display errors as hexadecimal. Like the other integer comparisons,
|
109
|
-
you can specify the size... here the size will also effect how many nibbles are shown (for example, `HEX16`
|
110
|
-
will show 4 nibbles).
|
111
|
-
|
112
|
-
TEST_ASSERT_EQUAL(expected, actual)
|
113
|
-
|
114
|
-
Another way of calling TEST_ASSERT_EQUAL_INT
|
115
|
-
|
116
|
-
TEST_ASSERT_INT_WITHIN(delta, expected, actual)
|
117
|
-
|
118
|
-
Asserts that the actual value is within plus or minus delta of the expected value. This also comes in
|
119
|
-
size specific variants.
|
120
|
-
|
121
|
-
Arrays
|
122
|
-
------
|
123
|
-
|
124
|
-
_ARRAY
|
125
|
-
|
126
|
-
You can append `_ARRAY` to any of these macros to make an array comparison of that type. Here you will
|
127
|
-
need to care a bit more about the actual size of the value being checked. You will also specify an
|
128
|
-
additional argument which is the number of elements to compare. For example:
|
129
|
-
|
130
|
-
TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, elements)
|
131
|
-
|
132
|
-
_EACH_EQUAL
|
133
|
-
|
134
|
-
Another array comparison option is to check that EVERY element of an array is equal to a single expected
|
135
|
-
value. You do this by specifying the EACH_EQUAL macro. For example:
|
136
|
-
|
137
|
-
TEST_ASSERT_EACH_EQUAL_INT32(expected, actual, elements)
|
138
|
-
|
139
|
-
Numerical Assertions: Bitwise
|
140
|
-
-----------------------------
|
141
|
-
|
142
|
-
TEST_ASSERT_BITS(mask, expected, actual)
|
143
|
-
|
144
|
-
Use an integer mask to specify which bits should be compared between two other integers. High bits in the mask are compared, low bits ignored.
|
145
|
-
|
146
|
-
TEST_ASSERT_BITS_HIGH(mask, actual)
|
147
|
-
|
148
|
-
Use an integer mask to specify which bits should be inspected to determine if they are all set high. High bits in the mask are compared, low bits ignored.
|
149
|
-
|
150
|
-
TEST_ASSERT_BITS_LOW(mask, actual)
|
151
|
-
|
152
|
-
Use an integer mask to specify which bits should be inspected to determine if they are all set low. High bits in the mask are compared, low bits ignored.
|
153
|
-
|
154
|
-
TEST_ASSERT_BIT_HIGH(bit, actual)
|
155
|
-
|
156
|
-
Test a single bit and verify that it is high. The bit is specified 0-31 for a 32-bit integer.
|
157
|
-
|
158
|
-
TEST_ASSERT_BIT_LOW(bit, actual)
|
159
|
-
|
160
|
-
Test a single bit and verify that it is low. The bit is specified 0-31 for a 32-bit integer.
|
161
|
-
|
162
|
-
Numerical Assertions: Floats
|
163
|
-
----------------------------
|
164
|
-
|
165
|
-
TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual)
|
166
|
-
|
167
|
-
Asserts that the actual value is within plus or minus delta of the expected value.
|
168
|
-
|
169
|
-
TEST_ASSERT_EQUAL_FLOAT(expected, actual)
|
170
|
-
TEST_ASSERT_EQUAL_DOUBLE(expected, actual)
|
171
|
-
|
172
|
-
Asserts that two floating point values are "equal" within a small % delta of the expected value.
|
173
|
-
|
174
|
-
String Assertions
|
175
|
-
-----------------
|
176
|
-
|
177
|
-
TEST_ASSERT_EQUAL_STRING(expected, actual)
|
178
|
-
|
179
|
-
Compare two null-terminate strings. Fail if any character is different or if the lengths are different.
|
180
|
-
|
181
|
-
TEST_ASSERT_EQUAL_STRING_LEN(expected, actual, len)
|
182
|
-
|
183
|
-
Compare two strings. Fail if any character is different, stop comparing after len characters.
|
184
|
-
|
185
|
-
TEST_ASSERT_EQUAL_STRING_MESSAGE(expected, actual, message)
|
186
|
-
|
187
|
-
Compare two null-terminate strings. Fail if any character is different or if the lengths are different. Output a custom message on failure.
|
188
|
-
|
189
|
-
TEST_ASSERT_EQUAL_STRING_LEN_MESSAGE(expected, actual, len, message)
|
190
|
-
|
191
|
-
Compare two strings. Fail if any character is different, stop comparing after len characters. Output a custom message on failure.
|
192
|
-
|
193
|
-
Pointer Assertions
|
194
|
-
------------------
|
195
|
-
|
196
|
-
Most pointer operations can be performed by simply using the integer comparisons above. However, a couple of special cases are added for clarity.
|
197
|
-
|
198
|
-
TEST_ASSERT_NULL(pointer)
|
199
|
-
|
200
|
-
Fails if the pointer is not equal to NULL
|
201
|
-
|
202
|
-
TEST_ASSERT_NOT_NULL(pointer)
|
203
|
-
|
204
|
-
Fails if the pointer is equal to NULL
|
205
|
-
|
206
|
-
Memory Assertions
|
207
|
-
-----------------
|
208
|
-
|
209
|
-
TEST_ASSERT_EQUAL_MEMORY(expected, actual, len)
|
210
|
-
|
211
|
-
Compare two blocks of memory. This is a good generic assertion for types that can't be coerced into acting like
|
212
|
-
standard types... but since it's a memory compare, you have to be careful that your data types are packed.
|
213
|
-
|
214
|
-
_MESSAGE
|
215
|
-
--------
|
216
|
-
|
217
|
-
you can append _MESSAGE to any of the macros to make them take an additional argument. This argument
|
218
|
-
is a string that will be printed at the end of the failure strings. This is useful for specifying more
|
219
|
-
information about the problem.
|
220
|
-
|
@@ -1,118 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# Unity Project - A Test Framework for C
|
3
|
-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
|
-
# [Released under MIT License. Please refer to license.txt for details]
|
5
|
-
# ==========================================
|
6
|
-
|
7
|
-
if RUBY_PLATFORM =~ /(win|w)32$/
|
8
|
-
begin
|
9
|
-
require 'Win32API'
|
10
|
-
rescue LoadError
|
11
|
-
puts 'ERROR! "Win32API" library not found'
|
12
|
-
puts '"Win32API" is required for colour on a windows machine'
|
13
|
-
puts ' try => "gem install Win32API" on the command line'
|
14
|
-
puts
|
15
|
-
end
|
16
|
-
# puts
|
17
|
-
# puts 'Windows Environment Detected...'
|
18
|
-
# puts 'Win32API Library Found.'
|
19
|
-
# puts
|
20
|
-
end
|
21
|
-
|
22
|
-
class ColourCommandLine
|
23
|
-
def initialize
|
24
|
-
return unless RUBY_PLATFORM =~ /(win|w)32$/
|
25
|
-
get_std_handle = Win32API.new('kernel32', 'GetStdHandle', ['L'], 'L')
|
26
|
-
@set_console_txt_attrb =
|
27
|
-
Win32API.new('kernel32', 'SetConsoleTextAttribute', %w(L N), 'I')
|
28
|
-
@hout = get_std_handle.call(-11)
|
29
|
-
end
|
30
|
-
|
31
|
-
def change_to(new_colour)
|
32
|
-
if RUBY_PLATFORM =~ /(win|w)32$/
|
33
|
-
@set_console_txt_attrb.call(@hout, win32_colour(new_colour))
|
34
|
-
else
|
35
|
-
"\033[30;#{posix_colour(new_colour)};22m"
|
36
|
-
end
|
37
|
-
end
|
38
|
-
|
39
|
-
def win32_colour(colour)
|
40
|
-
case colour
|
41
|
-
when :black then 0
|
42
|
-
when :dark_blue then 1
|
43
|
-
when :dark_green then 2
|
44
|
-
when :dark_cyan then 3
|
45
|
-
when :dark_red then 4
|
46
|
-
when :dark_purple then 5
|
47
|
-
when :dark_yellow, :narrative then 6
|
48
|
-
when :default_white, :default, :dark_white then 7
|
49
|
-
when :silver then 8
|
50
|
-
when :blue then 9
|
51
|
-
when :green, :success then 10
|
52
|
-
when :cyan, :output then 11
|
53
|
-
when :red, :failure then 12
|
54
|
-
when :purple then 13
|
55
|
-
when :yellow then 14
|
56
|
-
when :white then 15
|
57
|
-
else
|
58
|
-
0
|
59
|
-
end
|
60
|
-
end
|
61
|
-
|
62
|
-
def posix_colour(colour)
|
63
|
-
# ANSI Escape Codes - Foreground colors
|
64
|
-
# | Code | Color |
|
65
|
-
# | 39 | Default foreground color |
|
66
|
-
# | 30 | Black |
|
67
|
-
# | 31 | Red |
|
68
|
-
# | 32 | Green |
|
69
|
-
# | 33 | Yellow |
|
70
|
-
# | 34 | Blue |
|
71
|
-
# | 35 | Magenta |
|
72
|
-
# | 36 | Cyan |
|
73
|
-
# | 37 | Light gray |
|
74
|
-
# | 90 | Dark gray |
|
75
|
-
# | 91 | Light red |
|
76
|
-
# | 92 | Light green |
|
77
|
-
# | 93 | Light yellow |
|
78
|
-
# | 94 | Light blue |
|
79
|
-
# | 95 | Light magenta |
|
80
|
-
# | 96 | Light cyan |
|
81
|
-
# | 97 | White |
|
82
|
-
|
83
|
-
case colour
|
84
|
-
when :black then 30
|
85
|
-
when :red, :failure then 31
|
86
|
-
when :green, :success then 32
|
87
|
-
when :yellow then 33
|
88
|
-
when :blue, :narrative then 34
|
89
|
-
when :purple, :magenta then 35
|
90
|
-
when :cyan, :output then 36
|
91
|
-
when :white, :default_white then 37
|
92
|
-
when :default then 39
|
93
|
-
else
|
94
|
-
39
|
95
|
-
end
|
96
|
-
end
|
97
|
-
|
98
|
-
def out_c(mode, colour, str)
|
99
|
-
case RUBY_PLATFORM
|
100
|
-
when /(win|w)32$/
|
101
|
-
change_to(colour)
|
102
|
-
$stdout.puts str if mode == :puts
|
103
|
-
$stdout.print str if mode == :print
|
104
|
-
change_to(:default_white)
|
105
|
-
else
|
106
|
-
$stdout.puts("#{change_to(colour)}#{str}\033[0m") if mode == :puts
|
107
|
-
$stdout.print("#{change_to(colour)}#{str}\033[0m") if mode == :print
|
108
|
-
end
|
109
|
-
end
|
110
|
-
end # ColourCommandLine
|
111
|
-
|
112
|
-
def colour_puts(role, str)
|
113
|
-
ColourCommandLine.new.out_c(:puts, role, str)
|
114
|
-
end
|
115
|
-
|
116
|
-
def colour_print(role, str)
|
117
|
-
ColourCommandLine.new.out_c(:print, role, str)
|
118
|
-
end
|
@@ -1,39 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# Unity Project - A Test Framework for C
|
3
|
-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
|
-
# [Released under MIT License. Please refer to license.txt for details]
|
5
|
-
# ==========================================
|
6
|
-
|
7
|
-
require "#{File.expand_path(File.dirname(__FILE__))}/colour_prompt"
|
8
|
-
|
9
|
-
$colour_output = true
|
10
|
-
|
11
|
-
def report(message)
|
12
|
-
if !$colour_output
|
13
|
-
$stdout.puts(message)
|
14
|
-
else
|
15
|
-
message = message.join('\n') if message.class == Array
|
16
|
-
message.each_line do |line|
|
17
|
-
line.chomp!
|
18
|
-
colour = case line
|
19
|
-
when /(?:total\s+)?tests:?\s+(\d+)\s+(?:total\s+)?failures:?\s+\d+\s+Ignored:?/i
|
20
|
-
Regexp.last_match(1).to_i.zero? ? :green : :red
|
21
|
-
when /PASS/
|
22
|
-
:green
|
23
|
-
when /^OK$/
|
24
|
-
:green
|
25
|
-
when /(?:FAIL|ERROR)/
|
26
|
-
:red
|
27
|
-
when /IGNORE/
|
28
|
-
:yellow
|
29
|
-
when /^(?:Creating|Compiling|Linking)/
|
30
|
-
:white
|
31
|
-
else
|
32
|
-
:silver
|
33
|
-
end
|
34
|
-
colour_puts(colour, line)
|
35
|
-
end
|
36
|
-
end
|
37
|
-
$stdout.flush
|
38
|
-
$stderr.flush
|
39
|
-
end
|
@@ -1,36 +0,0 @@
|
|
1
|
-
#this is a sample configuration file for generate_module
|
2
|
-
#you would use it by calling generate_module with the -ygenerate_config.yml option
|
3
|
-
#files like this are useful for customizing generate_module to your environment
|
4
|
-
:generate_module:
|
5
|
-
:defaults:
|
6
|
-
#these defaults are used in place of any missing options at the command line
|
7
|
-
:path_src: ../src/
|
8
|
-
:path_inc: ../src/
|
9
|
-
:path_tst: ../test/
|
10
|
-
:update_svn: true
|
11
|
-
:includes:
|
12
|
-
#use [] for no additional includes, otherwise list the includes on separate lines
|
13
|
-
:src:
|
14
|
-
- Defs.h
|
15
|
-
- Board.h
|
16
|
-
:inc: []
|
17
|
-
:tst:
|
18
|
-
- Defs.h
|
19
|
-
- Board.h
|
20
|
-
- Exception.h
|
21
|
-
:boilerplates:
|
22
|
-
#these are inserted at the top of generated files.
|
23
|
-
#just comment out or remove if not desired.
|
24
|
-
#use %1$s where you would like the file name to appear (path/extension not included)
|
25
|
-
:src: |
|
26
|
-
//-------------------------------------------
|
27
|
-
// %1$s.c
|
28
|
-
//-------------------------------------------
|
29
|
-
:inc: |
|
30
|
-
//-------------------------------------------
|
31
|
-
// %1$s.h
|
32
|
-
//-------------------------------------------
|
33
|
-
:tst: |
|
34
|
-
//-------------------------------------------
|
35
|
-
// Test%1$s.c : Units tests for %1$s.c
|
36
|
-
//-------------------------------------------
|
@@ -1,308 +0,0 @@
|
|
1
|
-
# ==========================================
|
2
|
-
# Unity Project - A Test Framework for C
|
3
|
-
# Copyright (c) 2007 Mike Karlesky, Mark VanderVoord, Greg Williams
|
4
|
-
# [Released under MIT License. Please refer to license.txt for details]
|
5
|
-
# ==========================================
|
6
|
-
|
7
|
-
# This script creates all the files with start code necessary for a new module.
|
8
|
-
# A simple module only requires a source file, header file, and test file.
|
9
|
-
# Triad modules require a source, header, and test file for each triad type (like model, conductor, and hardware).
|
10
|
-
|
11
|
-
require 'rubygems'
|
12
|
-
require 'fileutils'
|
13
|
-
require 'pathname'
|
14
|
-
|
15
|
-
# TEMPLATE_TST
|
16
|
-
TEMPLATE_TST ||= '#include "unity.h"
|
17
|
-
%2$s#include "%1$s.h"
|
18
|
-
|
19
|
-
void setUp(void)
|
20
|
-
{
|
21
|
-
}
|
22
|
-
|
23
|
-
void tearDown(void)
|
24
|
-
{
|
25
|
-
}
|
26
|
-
|
27
|
-
void test_%1$s_NeedToImplement(void)
|
28
|
-
{
|
29
|
-
TEST_IGNORE_MESSAGE("Need to Implement %1$s");
|
30
|
-
}
|
31
|
-
'.freeze
|
32
|
-
|
33
|
-
# TEMPLATE_SRC
|
34
|
-
TEMPLATE_SRC ||= '%2$s#include "%1$s.h"
|
35
|
-
'.freeze
|
36
|
-
|
37
|
-
# TEMPLATE_INC
|
38
|
-
TEMPLATE_INC ||= '#ifndef _%3$s_H
|
39
|
-
#define _%3$s_H
|
40
|
-
%2$s
|
41
|
-
|
42
|
-
#endif // _%3$s_H
|
43
|
-
'.freeze
|
44
|
-
|
45
|
-
class UnityModuleGenerator
|
46
|
-
############################
|
47
|
-
def initialize(options = nil)
|
48
|
-
here = File.expand_path(File.dirname(__FILE__)) + '/'
|
49
|
-
|
50
|
-
@options = UnityModuleGenerator.default_options
|
51
|
-
case options
|
52
|
-
when NilClass then @options
|
53
|
-
when String then @options.merge!(UnityModuleGenerator.grab_config(options))
|
54
|
-
when Hash then @options.merge!(options)
|
55
|
-
else raise 'If you specify arguments, it should be a filename or a hash of options'
|
56
|
-
end
|
57
|
-
|
58
|
-
# Create default file paths if none were provided
|
59
|
-
@options[:path_src] = here + '../src/' if @options[:path_src].nil?
|
60
|
-
@options[:path_inc] = @options[:path_src] if @options[:path_inc].nil?
|
61
|
-
@options[:path_tst] = here + '../test/' if @options[:path_tst].nil?
|
62
|
-
@options[:path_src] += '/' unless @options[:path_src][-1] == 47
|
63
|
-
@options[:path_inc] += '/' unless @options[:path_inc][-1] == 47
|
64
|
-
@options[:path_tst] += '/' unless @options[:path_tst][-1] == 47
|
65
|
-
|
66
|
-
# Built in patterns
|
67
|
-
@patterns = {
|
68
|
-
'src' => {
|
69
|
-
'' => { inc: [] }
|
70
|
-
},
|
71
|
-
'test' => {
|
72
|
-
'' => { inc: [] }
|
73
|
-
},
|
74
|
-
'dh' => {
|
75
|
-
'Driver' => { inc: [create_filename('%1$s', 'Hardware.h')] },
|
76
|
-
'Hardware' => { inc: [] }
|
77
|
-
},
|
78
|
-
'dih' => {
|
79
|
-
'Driver' => { inc: [create_filename('%1$s', 'Hardware.h'), create_filename('%1$s', 'Interrupt.h')] },
|
80
|
-
'Interrupt' => { inc: [create_filename('%1$s', 'Hardware.h')] },
|
81
|
-
'Hardware' => { inc: [] }
|
82
|
-
},
|
83
|
-
'mch' => {
|
84
|
-
'Model' => { inc: [] },
|
85
|
-
'Conductor' => { inc: [create_filename('%1$s', 'Model.h'), create_filename('%1$s', 'Hardware.h')] },
|
86
|
-
'Hardware' => { inc: [] }
|
87
|
-
},
|
88
|
-
'mvp' => {
|
89
|
-
'Model' => { inc: [] },
|
90
|
-
'Presenter' => { inc: [create_filename('%1$s', 'Model.h'), create_filename('%1$s', 'View.h')] },
|
91
|
-
'View' => { inc: [] }
|
92
|
-
}
|
93
|
-
}
|
94
|
-
end
|
95
|
-
|
96
|
-
############################
|
97
|
-
def self.default_options
|
98
|
-
{
|
99
|
-
pattern: 'src',
|
100
|
-
includes: {
|
101
|
-
src: [],
|
102
|
-
inc: [],
|
103
|
-
tst: []
|
104
|
-
},
|
105
|
-
update_svn: false,
|
106
|
-
boilerplates: {},
|
107
|
-
test_prefix: 'Test',
|
108
|
-
mock_prefix: 'Mock'
|
109
|
-
}
|
110
|
-
end
|
111
|
-
|
112
|
-
############################
|
113
|
-
def self.grab_config(config_file)
|
114
|
-
options = default_options
|
115
|
-
unless config_file.nil? || config_file.empty?
|
116
|
-
require 'yaml'
|
117
|
-
yaml_guts = YAML.load_file(config_file)
|
118
|
-
options.merge!(yaml_guts[:unity] || yaml_guts[:cmock])
|
119
|
-
raise "No :unity or :cmock section found in #{config_file}" unless options
|
120
|
-
end
|
121
|
-
options
|
122
|
-
end
|
123
|
-
|
124
|
-
############################
|
125
|
-
def files_to_operate_on(module_name, pattern = nil)
|
126
|
-
# strip any leading path information from the module name and save for later
|
127
|
-
subfolder = File.dirname(module_name)
|
128
|
-
module_name = File.basename(module_name)
|
129
|
-
|
130
|
-
# create triad definition
|
131
|
-
prefix = @options[:test_prefix] || 'Test'
|
132
|
-
triad = [{ ext: '.c', path: @options[:path_src], prefix: '', template: TEMPLATE_SRC, inc: :src, boilerplate: @options[:boilerplates][:src] },
|
133
|
-
{ ext: '.h', path: @options[:path_inc], prefix: '', template: TEMPLATE_INC, inc: :inc, boilerplate: @options[:boilerplates][:inc] },
|
134
|
-
{ ext: '.c', path: @options[:path_tst], prefix: prefix, template: TEMPLATE_TST, inc: :tst, boilerplate: @options[:boilerplates][:tst] }]
|
135
|
-
|
136
|
-
# prepare the pattern for use
|
137
|
-
pattern = (pattern || @options[:pattern] || 'src').downcase
|
138
|
-
patterns = @patterns[pattern]
|
139
|
-
raise "ERROR: The design pattern '#{pattern}' specified isn't one that I recognize!" if patterns.nil?
|
140
|
-
|
141
|
-
# single file patterns (currently just 'test') can reject the other parts of the triad
|
142
|
-
triad.select! { |v| v[:inc] == :tst } if pattern == 'test'
|
143
|
-
|
144
|
-
# Assemble the path/names of the files we need to work with.
|
145
|
-
files = []
|
146
|
-
triad.each do |cfg|
|
147
|
-
patterns.each_pair do |pattern_file, pattern_traits|
|
148
|
-
submodule_name = create_filename(module_name, pattern_file)
|
149
|
-
filename = cfg[:prefix] + submodule_name + cfg[:ext]
|
150
|
-
files << {
|
151
|
-
path: (Pathname.new("#{cfg[:path]}#{subfolder}") + filename).cleanpath,
|
152
|
-
name: submodule_name,
|
153
|
-
template: cfg[:template],
|
154
|
-
boilerplate: cfg[:boilerplate],
|
155
|
-
includes: case (cfg[:inc])
|
156
|
-
when :src then (@options[:includes][:src] || []) | (pattern_traits[:inc].map { |f| format(f, module_name) })
|
157
|
-
when :inc then (@options[:includes][:inc] || [])
|
158
|
-
when :tst then (@options[:includes][:tst] || []) | (pattern_traits[:inc].map { |f| format("#{@options[:mock_prefix]}#{f}", module_name) })
|
159
|
-
end
|
160
|
-
}
|
161
|
-
end
|
162
|
-
end
|
163
|
-
|
164
|
-
files
|
165
|
-
end
|
166
|
-
|
167
|
-
############################
|
168
|
-
def create_filename(part1, part2 = '')
|
169
|
-
if part2.empty?
|
170
|
-
case (@options[:naming])
|
171
|
-
when 'bumpy' then part1
|
172
|
-
when 'camel' then part1
|
173
|
-
when 'snake' then part1.downcase
|
174
|
-
when 'caps' then part1.upcase
|
175
|
-
else part1.downcase
|
176
|
-
end
|
177
|
-
else
|
178
|
-
case (@options[:naming])
|
179
|
-
when 'bumpy' then part1 + part2
|
180
|
-
when 'camel' then part1 + part2
|
181
|
-
when 'snake' then part1.downcase + '_' + part2.downcase
|
182
|
-
when 'caps' then part1.upcase + '_' + part2.upcase
|
183
|
-
else part1.downcase + '_' + part2.downcase
|
184
|
-
end
|
185
|
-
end
|
186
|
-
end
|
187
|
-
|
188
|
-
############################
|
189
|
-
def generate(module_name, pattern = nil)
|
190
|
-
files = files_to_operate_on(module_name, pattern)
|
191
|
-
|
192
|
-
# Abort if all of the module files already exist
|
193
|
-
all_files_exist = true
|
194
|
-
files.each do |file|
|
195
|
-
all_files_exist = false unless File.exist?(file[:path])
|
196
|
-
end
|
197
|
-
raise "ERROR: File #{files[0][:name]} already exists. Exiting." if all_files_exist
|
198
|
-
|
199
|
-
# Create Source Modules
|
200
|
-
files.each_with_index do |file, _i|
|
201
|
-
# If this file already exists, don't overwrite it.
|
202
|
-
if File.exist?(file[:path])
|
203
|
-
puts "File #{file[:path]} already exists!"
|
204
|
-
next
|
205
|
-
end
|
206
|
-
# Create the path first if necessary.
|
207
|
-
FileUtils.mkdir_p(File.dirname(file[:path]), verbose: false)
|
208
|
-
File.open(file[:path], 'w') do |f|
|
209
|
-
f.write("#{file[:boilerplate]}\n" % [file[:name]]) unless file[:boilerplate].nil?
|
210
|
-
f.write(file[:template] % [file[:name],
|
211
|
-
file[:includes].map { |ff| "#include \"#{ff}\"\n" }.join,
|
212
|
-
file[:name].upcase])
|
213
|
-
end
|
214
|
-
if @options[:update_svn]
|
215
|
-
`svn add \"#{file[:path]}\"`
|
216
|
-
if $!.exitstatus.zero?
|
217
|
-
puts "File #{file[:path]} created and added to source control"
|
218
|
-
else
|
219
|
-
puts "File #{file[:path]} created but FAILED adding to source control!"
|
220
|
-
end
|
221
|
-
else
|
222
|
-
puts "File #{file[:path]} created"
|
223
|
-
end
|
224
|
-
end
|
225
|
-
puts 'Generate Complete'
|
226
|
-
end
|
227
|
-
|
228
|
-
############################
|
229
|
-
def destroy(module_name, pattern = nil)
|
230
|
-
files_to_operate_on(module_name, pattern).each do |filespec|
|
231
|
-
file = filespec[:path]
|
232
|
-
if File.exist?(file)
|
233
|
-
if @options[:update_svn]
|
234
|
-
`svn delete \"#{file}\" --force`
|
235
|
-
puts "File #{file} deleted and removed from source control"
|
236
|
-
else
|
237
|
-
FileUtils.remove(file)
|
238
|
-
puts "File #{file} deleted"
|
239
|
-
end
|
240
|
-
else
|
241
|
-
puts "File #{file} does not exist so cannot be removed."
|
242
|
-
end
|
243
|
-
end
|
244
|
-
puts 'Destroy Complete'
|
245
|
-
end
|
246
|
-
end
|
247
|
-
|
248
|
-
############################
|
249
|
-
# Handle As Command Line If Called That Way
|
250
|
-
if $0 == __FILE__
|
251
|
-
destroy = false
|
252
|
-
options = {}
|
253
|
-
module_name = nil
|
254
|
-
|
255
|
-
# Parse the command line parameters.
|
256
|
-
ARGV.each do |arg|
|
257
|
-
case arg
|
258
|
-
when /^-d/ then destroy = true
|
259
|
-
when /^-u/ then options[:update_svn] = true
|
260
|
-
when /^-p\"?(\w+)\"?/ then options[:pattern] = Regexp.last_match(1)
|
261
|
-
when /^-s\"?(.+)\"?/ then options[:path_src] = Regexp.last_match(1)
|
262
|
-
when /^-i\"?(.+)\"?/ then options[:path_inc] = Regexp.last_match(1)
|
263
|
-
when /^-t\"?(.+)\"?/ then options[:path_tst] = Regexp.last_match(1)
|
264
|
-
when /^-n\"?(.+)\"?/ then options[:naming] = Regexp.last_match(1)
|
265
|
-
when /^-y\"?(.+)\"?/ then options = UnityModuleGenerator.grab_config(Regexp.last_match(1))
|
266
|
-
when /^(\w+)/
|
267
|
-
raise "ERROR: You can't have more than one Module name specified!" unless module_name.nil?
|
268
|
-
module_name = arg
|
269
|
-
when /^-(h|-help)/
|
270
|
-
ARGV = [].freeze
|
271
|
-
else
|
272
|
-
raise "ERROR: Unknown option specified '#{arg}'"
|
273
|
-
end
|
274
|
-
end
|
275
|
-
|
276
|
-
unless ARGV[0]
|
277
|
-
puts ["\nGENERATE MODULE\n-------- ------",
|
278
|
-
"\nUsage: ruby generate_module [options] module_name",
|
279
|
-
" -i\"include\" sets the path to output headers to 'include' (DEFAULT ../src)",
|
280
|
-
" -s\"../src\" sets the path to output source to '../src' (DEFAULT ../src)",
|
281
|
-
" -t\"C:/test\" sets the path to output source to 'C:/test' (DEFAULT ../test)",
|
282
|
-
' -p"MCH" sets the output pattern to MCH.',
|
283
|
-
' dh - driver hardware.',
|
284
|
-
' dih - driver interrupt hardware.',
|
285
|
-
' mch - model conductor hardware.',
|
286
|
-
' mvp - model view presenter.',
|
287
|
-
' src - just a source module, header and test. (DEFAULT)',
|
288
|
-
' test - just a test file.',
|
289
|
-
' -d destroy module instead of creating it.',
|
290
|
-
' -n"camel" sets the file naming convention.',
|
291
|
-
' bumpy - BumpyCaseFilenames.',
|
292
|
-
' camel - camelCaseFilenames.',
|
293
|
-
' snake - snake_case_filenames. (DEFAULT)',
|
294
|
-
' caps - CAPS_CASE_FILENAMES.',
|
295
|
-
' -u update subversion too (requires subversion command line)',
|
296
|
-
' -y"my.yml" selects a different yaml config file for module generation',
|
297
|
-
''].join("\n")
|
298
|
-
exit
|
299
|
-
end
|
300
|
-
|
301
|
-
raise 'ERROR: You must have a Module name specified! (use option -h for help)' if module_name.nil?
|
302
|
-
if destroy
|
303
|
-
UnityModuleGenerator.new(options).destroy(module_name)
|
304
|
-
else
|
305
|
-
UnityModuleGenerator.new(options).generate(module_name)
|
306
|
-
end
|
307
|
-
|
308
|
-
end
|