ceedling 0.30.0 → 0.31.0
Sign up to get free protection for your applications and to get access to all the features.
- 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
@@ -0,0 +1,46 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
#ifndef _MOCKEXECUTOR_H
|
3
|
+
#define _MOCKEXECUTOR_H
|
4
|
+
|
5
|
+
#include "unity.h"
|
6
|
+
#include "Executor.h"
|
7
|
+
|
8
|
+
/* Ignore the following warnings, since we are copying code */
|
9
|
+
#if defined(__GNUC__) && !defined(__ICC) && !defined(__TMS470__)
|
10
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > 6 || (__GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 0)))
|
11
|
+
#pragma GCC diagnostic push
|
12
|
+
#endif
|
13
|
+
#if !defined(__clang__)
|
14
|
+
#pragma GCC diagnostic ignored "-Wpragmas"
|
15
|
+
#endif
|
16
|
+
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
17
|
+
#pragma GCC diagnostic ignored "-Wduplicate-decl-specifier"
|
18
|
+
#endif
|
19
|
+
|
20
|
+
void MockExecutor_Init(void);
|
21
|
+
void MockExecutor_Destroy(void);
|
22
|
+
void MockExecutor_Verify(void);
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
#define Executor_Init_Ignore() Executor_Init_CMockIgnore()
|
28
|
+
void Executor_Init_CMockIgnore(void);
|
29
|
+
#define Executor_Init_StopIgnore() Executor_Init_CMockStopIgnore()
|
30
|
+
void Executor_Init_CMockStopIgnore(void);
|
31
|
+
#define Executor_Init_Expect() Executor_Init_CMockExpect(__LINE__)
|
32
|
+
void Executor_Init_CMockExpect(UNITY_LINE_TYPE cmock_line);
|
33
|
+
#define Executor_Run_IgnoreAndReturn(cmock_retval) Executor_Run_CMockIgnoreAndReturn(__LINE__, cmock_retval)
|
34
|
+
void Executor_Run_CMockIgnoreAndReturn(UNITY_LINE_TYPE cmock_line, bool cmock_to_return);
|
35
|
+
#define Executor_Run_StopIgnore() Executor_Run_CMockStopIgnore()
|
36
|
+
void Executor_Run_CMockStopIgnore(void);
|
37
|
+
#define Executor_Run_ExpectAndReturn(cmock_retval) Executor_Run_CMockExpectAndReturn(__LINE__, cmock_retval)
|
38
|
+
void Executor_Run_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, bool cmock_to_return);
|
39
|
+
|
40
|
+
#if defined(__GNUC__) && !defined(__ICC) && !defined(__TMS470__)
|
41
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > 6 || (__GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 0)))
|
42
|
+
#pragma GCC diagnostic pop
|
43
|
+
#endif
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#endif
|
@@ -0,0 +1,157 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
#include <string.h>
|
3
|
+
#include <stdlib.h>
|
4
|
+
#include <setjmp.h>
|
5
|
+
#include "cmock.h"
|
6
|
+
#include "MockIntrinsicsWrapper.h"
|
7
|
+
|
8
|
+
static const char* CMockString_Interrupt_Disable = "Interrupt_Disable";
|
9
|
+
static const char* CMockString_Interrupt_Enable = "Interrupt_Enable";
|
10
|
+
|
11
|
+
typedef struct _CMOCK_Interrupt_Enable_CALL_INSTANCE
|
12
|
+
{
|
13
|
+
UNITY_LINE_TYPE LineNumber;
|
14
|
+
int CallOrder;
|
15
|
+
|
16
|
+
} CMOCK_Interrupt_Enable_CALL_INSTANCE;
|
17
|
+
|
18
|
+
typedef struct _CMOCK_Interrupt_Disable_CALL_INSTANCE
|
19
|
+
{
|
20
|
+
UNITY_LINE_TYPE LineNumber;
|
21
|
+
int CallOrder;
|
22
|
+
|
23
|
+
} CMOCK_Interrupt_Disable_CALL_INSTANCE;
|
24
|
+
|
25
|
+
static struct MockIntrinsicsWrapperInstance
|
26
|
+
{
|
27
|
+
char Interrupt_Enable_IgnoreBool;
|
28
|
+
CMOCK_MEM_INDEX_TYPE Interrupt_Enable_CallInstance;
|
29
|
+
char Interrupt_Disable_IgnoreBool;
|
30
|
+
CMOCK_MEM_INDEX_TYPE Interrupt_Disable_CallInstance;
|
31
|
+
} Mock;
|
32
|
+
|
33
|
+
extern jmp_buf AbortFrame;
|
34
|
+
extern int GlobalExpectCount;
|
35
|
+
extern int GlobalVerifyOrder;
|
36
|
+
|
37
|
+
void MockIntrinsicsWrapper_Verify(void)
|
38
|
+
{
|
39
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
40
|
+
CMOCK_MEM_INDEX_TYPE call_instance;
|
41
|
+
call_instance = Mock.Interrupt_Enable_CallInstance;
|
42
|
+
if (Mock.Interrupt_Enable_IgnoreBool)
|
43
|
+
call_instance = CMOCK_GUTS_NONE;
|
44
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
45
|
+
{
|
46
|
+
UNITY_SET_DETAIL(CMockString_Interrupt_Enable);
|
47
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
48
|
+
}
|
49
|
+
call_instance = Mock.Interrupt_Disable_CallInstance;
|
50
|
+
if (Mock.Interrupt_Disable_IgnoreBool)
|
51
|
+
call_instance = CMOCK_GUTS_NONE;
|
52
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
53
|
+
{
|
54
|
+
UNITY_SET_DETAIL(CMockString_Interrupt_Disable);
|
55
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
56
|
+
}
|
57
|
+
}
|
58
|
+
|
59
|
+
void MockIntrinsicsWrapper_Init(void)
|
60
|
+
{
|
61
|
+
MockIntrinsicsWrapper_Destroy();
|
62
|
+
}
|
63
|
+
|
64
|
+
void MockIntrinsicsWrapper_Destroy(void)
|
65
|
+
{
|
66
|
+
CMock_Guts_MemFreeAll();
|
67
|
+
memset(&Mock, 0, sizeof(Mock));
|
68
|
+
GlobalExpectCount = 0;
|
69
|
+
GlobalVerifyOrder = 0;
|
70
|
+
}
|
71
|
+
|
72
|
+
void Interrupt_Enable(void)
|
73
|
+
{
|
74
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
75
|
+
CMOCK_Interrupt_Enable_CALL_INSTANCE* cmock_call_instance;
|
76
|
+
UNITY_SET_DETAIL(CMockString_Interrupt_Enable);
|
77
|
+
cmock_call_instance = (CMOCK_Interrupt_Enable_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.Interrupt_Enable_CallInstance);
|
78
|
+
Mock.Interrupt_Enable_CallInstance = CMock_Guts_MemNext(Mock.Interrupt_Enable_CallInstance);
|
79
|
+
if (Mock.Interrupt_Enable_IgnoreBool)
|
80
|
+
{
|
81
|
+
UNITY_CLR_DETAILS();
|
82
|
+
return;
|
83
|
+
}
|
84
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
85
|
+
cmock_line = cmock_call_instance->LineNumber;
|
86
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
87
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
88
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
89
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
90
|
+
UNITY_CLR_DETAILS();
|
91
|
+
}
|
92
|
+
|
93
|
+
void Interrupt_Enable_CMockIgnore(void)
|
94
|
+
{
|
95
|
+
Mock.Interrupt_Enable_IgnoreBool = (char)1;
|
96
|
+
}
|
97
|
+
|
98
|
+
void Interrupt_Enable_CMockStopIgnore(void)
|
99
|
+
{
|
100
|
+
Mock.Interrupt_Enable_IgnoreBool = (char)0;
|
101
|
+
}
|
102
|
+
|
103
|
+
void Interrupt_Enable_CMockExpect(UNITY_LINE_TYPE cmock_line)
|
104
|
+
{
|
105
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_Interrupt_Enable_CALL_INSTANCE));
|
106
|
+
CMOCK_Interrupt_Enable_CALL_INSTANCE* cmock_call_instance = (CMOCK_Interrupt_Enable_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
107
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
108
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
109
|
+
Mock.Interrupt_Enable_CallInstance = CMock_Guts_MemChain(Mock.Interrupt_Enable_CallInstance, cmock_guts_index);
|
110
|
+
Mock.Interrupt_Enable_IgnoreBool = (char)0;
|
111
|
+
cmock_call_instance->LineNumber = cmock_line;
|
112
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
113
|
+
}
|
114
|
+
|
115
|
+
void Interrupt_Disable(void)
|
116
|
+
{
|
117
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
118
|
+
CMOCK_Interrupt_Disable_CALL_INSTANCE* cmock_call_instance;
|
119
|
+
UNITY_SET_DETAIL(CMockString_Interrupt_Disable);
|
120
|
+
cmock_call_instance = (CMOCK_Interrupt_Disable_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.Interrupt_Disable_CallInstance);
|
121
|
+
Mock.Interrupt_Disable_CallInstance = CMock_Guts_MemNext(Mock.Interrupt_Disable_CallInstance);
|
122
|
+
if (Mock.Interrupt_Disable_IgnoreBool)
|
123
|
+
{
|
124
|
+
UNITY_CLR_DETAILS();
|
125
|
+
return;
|
126
|
+
}
|
127
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
128
|
+
cmock_line = cmock_call_instance->LineNumber;
|
129
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
130
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
131
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
132
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
133
|
+
UNITY_CLR_DETAILS();
|
134
|
+
}
|
135
|
+
|
136
|
+
void Interrupt_Disable_CMockIgnore(void)
|
137
|
+
{
|
138
|
+
Mock.Interrupt_Disable_IgnoreBool = (char)1;
|
139
|
+
}
|
140
|
+
|
141
|
+
void Interrupt_Disable_CMockStopIgnore(void)
|
142
|
+
{
|
143
|
+
Mock.Interrupt_Disable_IgnoreBool = (char)0;
|
144
|
+
}
|
145
|
+
|
146
|
+
void Interrupt_Disable_CMockExpect(UNITY_LINE_TYPE cmock_line)
|
147
|
+
{
|
148
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_Interrupt_Disable_CALL_INSTANCE));
|
149
|
+
CMOCK_Interrupt_Disable_CALL_INSTANCE* cmock_call_instance = (CMOCK_Interrupt_Disable_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
150
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
151
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
152
|
+
Mock.Interrupt_Disable_CallInstance = CMock_Guts_MemChain(Mock.Interrupt_Disable_CallInstance, cmock_guts_index);
|
153
|
+
Mock.Interrupt_Disable_IgnoreBool = (char)0;
|
154
|
+
cmock_call_instance->LineNumber = cmock_line;
|
155
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
156
|
+
}
|
157
|
+
|
@@ -0,0 +1,46 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
#ifndef _MOCKINTRINSICSWRAPPER_H
|
3
|
+
#define _MOCKINTRINSICSWRAPPER_H
|
4
|
+
|
5
|
+
#include "unity.h"
|
6
|
+
#include "IntrinsicsWrapper.h"
|
7
|
+
|
8
|
+
/* Ignore the following warnings, since we are copying code */
|
9
|
+
#if defined(__GNUC__) && !defined(__ICC) && !defined(__TMS470__)
|
10
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > 6 || (__GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 0)))
|
11
|
+
#pragma GCC diagnostic push
|
12
|
+
#endif
|
13
|
+
#if !defined(__clang__)
|
14
|
+
#pragma GCC diagnostic ignored "-Wpragmas"
|
15
|
+
#endif
|
16
|
+
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
17
|
+
#pragma GCC diagnostic ignored "-Wduplicate-decl-specifier"
|
18
|
+
#endif
|
19
|
+
|
20
|
+
void MockIntrinsicsWrapper_Init(void);
|
21
|
+
void MockIntrinsicsWrapper_Destroy(void);
|
22
|
+
void MockIntrinsicsWrapper_Verify(void);
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
#define Interrupt_Enable_Ignore() Interrupt_Enable_CMockIgnore()
|
28
|
+
void Interrupt_Enable_CMockIgnore(void);
|
29
|
+
#define Interrupt_Enable_StopIgnore() Interrupt_Enable_CMockStopIgnore()
|
30
|
+
void Interrupt_Enable_CMockStopIgnore(void);
|
31
|
+
#define Interrupt_Enable_Expect() Interrupt_Enable_CMockExpect(__LINE__)
|
32
|
+
void Interrupt_Enable_CMockExpect(UNITY_LINE_TYPE cmock_line);
|
33
|
+
#define Interrupt_Disable_Ignore() Interrupt_Disable_CMockIgnore()
|
34
|
+
void Interrupt_Disable_CMockIgnore(void);
|
35
|
+
#define Interrupt_Disable_StopIgnore() Interrupt_Disable_CMockStopIgnore()
|
36
|
+
void Interrupt_Disable_CMockStopIgnore(void);
|
37
|
+
#define Interrupt_Disable_Expect() Interrupt_Disable_CMockExpect(__LINE__)
|
38
|
+
void Interrupt_Disable_CMockExpect(UNITY_LINE_TYPE cmock_line);
|
39
|
+
|
40
|
+
#if defined(__GNUC__) && !defined(__ICC) && !defined(__TMS470__)
|
41
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > 6 || (__GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 0)))
|
42
|
+
#pragma GCC diagnostic pop
|
43
|
+
#endif
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#endif
|
@@ -0,0 +1,96 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
#include <string.h>
|
3
|
+
#include <stdlib.h>
|
4
|
+
#include <setjmp.h>
|
5
|
+
#include "cmock.h"
|
6
|
+
#include "MockModel.h"
|
7
|
+
|
8
|
+
static const char* CMockString_Model_Init = "Model_Init";
|
9
|
+
|
10
|
+
typedef struct _CMOCK_Model_Init_CALL_INSTANCE
|
11
|
+
{
|
12
|
+
UNITY_LINE_TYPE LineNumber;
|
13
|
+
int CallOrder;
|
14
|
+
|
15
|
+
} CMOCK_Model_Init_CALL_INSTANCE;
|
16
|
+
|
17
|
+
static struct MockModelInstance
|
18
|
+
{
|
19
|
+
char Model_Init_IgnoreBool;
|
20
|
+
CMOCK_MEM_INDEX_TYPE Model_Init_CallInstance;
|
21
|
+
} Mock;
|
22
|
+
|
23
|
+
extern jmp_buf AbortFrame;
|
24
|
+
extern int GlobalExpectCount;
|
25
|
+
extern int GlobalVerifyOrder;
|
26
|
+
|
27
|
+
void MockModel_Verify(void)
|
28
|
+
{
|
29
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
30
|
+
CMOCK_MEM_INDEX_TYPE call_instance;
|
31
|
+
call_instance = Mock.Model_Init_CallInstance;
|
32
|
+
if (Mock.Model_Init_IgnoreBool)
|
33
|
+
call_instance = CMOCK_GUTS_NONE;
|
34
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
35
|
+
{
|
36
|
+
UNITY_SET_DETAIL(CMockString_Model_Init);
|
37
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
38
|
+
}
|
39
|
+
}
|
40
|
+
|
41
|
+
void MockModel_Init(void)
|
42
|
+
{
|
43
|
+
MockModel_Destroy();
|
44
|
+
}
|
45
|
+
|
46
|
+
void MockModel_Destroy(void)
|
47
|
+
{
|
48
|
+
CMock_Guts_MemFreeAll();
|
49
|
+
memset(&Mock, 0, sizeof(Mock));
|
50
|
+
GlobalExpectCount = 0;
|
51
|
+
GlobalVerifyOrder = 0;
|
52
|
+
}
|
53
|
+
|
54
|
+
void Model_Init(void)
|
55
|
+
{
|
56
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
57
|
+
CMOCK_Model_Init_CALL_INSTANCE* cmock_call_instance;
|
58
|
+
UNITY_SET_DETAIL(CMockString_Model_Init);
|
59
|
+
cmock_call_instance = (CMOCK_Model_Init_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.Model_Init_CallInstance);
|
60
|
+
Mock.Model_Init_CallInstance = CMock_Guts_MemNext(Mock.Model_Init_CallInstance);
|
61
|
+
if (Mock.Model_Init_IgnoreBool)
|
62
|
+
{
|
63
|
+
UNITY_CLR_DETAILS();
|
64
|
+
return;
|
65
|
+
}
|
66
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
67
|
+
cmock_line = cmock_call_instance->LineNumber;
|
68
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
69
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
70
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
71
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
72
|
+
UNITY_CLR_DETAILS();
|
73
|
+
}
|
74
|
+
|
75
|
+
void Model_Init_CMockIgnore(void)
|
76
|
+
{
|
77
|
+
Mock.Model_Init_IgnoreBool = (char)1;
|
78
|
+
}
|
79
|
+
|
80
|
+
void Model_Init_CMockStopIgnore(void)
|
81
|
+
{
|
82
|
+
Mock.Model_Init_IgnoreBool = (char)0;
|
83
|
+
}
|
84
|
+
|
85
|
+
void Model_Init_CMockExpect(UNITY_LINE_TYPE cmock_line)
|
86
|
+
{
|
87
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_Model_Init_CALL_INSTANCE));
|
88
|
+
CMOCK_Model_Init_CALL_INSTANCE* cmock_call_instance = (CMOCK_Model_Init_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
89
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
90
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
91
|
+
Mock.Model_Init_CallInstance = CMock_Guts_MemChain(Mock.Model_Init_CallInstance, cmock_guts_index);
|
92
|
+
Mock.Model_Init_IgnoreBool = (char)0;
|
93
|
+
cmock_call_instance->LineNumber = cmock_line;
|
94
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
95
|
+
}
|
96
|
+
|
@@ -0,0 +1,40 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
#ifndef _MOCKMODEL_H
|
3
|
+
#define _MOCKMODEL_H
|
4
|
+
|
5
|
+
#include "unity.h"
|
6
|
+
#include "Model.h"
|
7
|
+
|
8
|
+
/* Ignore the following warnings, since we are copying code */
|
9
|
+
#if defined(__GNUC__) && !defined(__ICC) && !defined(__TMS470__)
|
10
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > 6 || (__GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 0)))
|
11
|
+
#pragma GCC diagnostic push
|
12
|
+
#endif
|
13
|
+
#if !defined(__clang__)
|
14
|
+
#pragma GCC diagnostic ignored "-Wpragmas"
|
15
|
+
#endif
|
16
|
+
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
17
|
+
#pragma GCC diagnostic ignored "-Wduplicate-decl-specifier"
|
18
|
+
#endif
|
19
|
+
|
20
|
+
void MockModel_Init(void);
|
21
|
+
void MockModel_Destroy(void);
|
22
|
+
void MockModel_Verify(void);
|
23
|
+
|
24
|
+
|
25
|
+
|
26
|
+
|
27
|
+
#define Model_Init_Ignore() Model_Init_CMockIgnore()
|
28
|
+
void Model_Init_CMockIgnore(void);
|
29
|
+
#define Model_Init_StopIgnore() Model_Init_CMockStopIgnore()
|
30
|
+
void Model_Init_CMockStopIgnore(void);
|
31
|
+
#define Model_Init_Expect() Model_Init_CMockExpect(__LINE__)
|
32
|
+
void Model_Init_CMockExpect(UNITY_LINE_TYPE cmock_line);
|
33
|
+
|
34
|
+
#if defined(__GNUC__) && !defined(__ICC) && !defined(__TMS470__)
|
35
|
+
#if __GNUC__ > 4 || (__GNUC__ == 4 && (__GNUC_MINOR__ > 6 || (__GNUC_MINOR__ == 6 && __GNUC_PATCHLEVEL__ > 0)))
|
36
|
+
#pragma GCC diagnostic pop
|
37
|
+
#endif
|
38
|
+
#endif
|
39
|
+
|
40
|
+
#endif
|
@@ -0,0 +1,326 @@
|
|
1
|
+
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
2
|
+
#include <string.h>
|
3
|
+
#include <stdlib.h>
|
4
|
+
#include <setjmp.h>
|
5
|
+
#include "cmock.h"
|
6
|
+
#include "MockTaskScheduler.h"
|
7
|
+
|
8
|
+
static const char* CMockString_TaskScheduler_DoAdc = "TaskScheduler_DoAdc";
|
9
|
+
static const char* CMockString_TaskScheduler_DoUsart = "TaskScheduler_DoUsart";
|
10
|
+
static const char* CMockString_TaskScheduler_Init = "TaskScheduler_Init";
|
11
|
+
static const char* CMockString_TaskScheduler_Update = "TaskScheduler_Update";
|
12
|
+
static const char* CMockString_time = "time";
|
13
|
+
|
14
|
+
typedef struct _CMOCK_TaskScheduler_Init_CALL_INSTANCE
|
15
|
+
{
|
16
|
+
UNITY_LINE_TYPE LineNumber;
|
17
|
+
int CallOrder;
|
18
|
+
|
19
|
+
} CMOCK_TaskScheduler_Init_CALL_INSTANCE;
|
20
|
+
|
21
|
+
typedef struct _CMOCK_TaskScheduler_Update_CALL_INSTANCE
|
22
|
+
{
|
23
|
+
UNITY_LINE_TYPE LineNumber;
|
24
|
+
int CallOrder;
|
25
|
+
uint32 Expected_time;
|
26
|
+
|
27
|
+
} CMOCK_TaskScheduler_Update_CALL_INSTANCE;
|
28
|
+
|
29
|
+
typedef struct _CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE
|
30
|
+
{
|
31
|
+
UNITY_LINE_TYPE LineNumber;
|
32
|
+
bool ReturnVal;
|
33
|
+
int CallOrder;
|
34
|
+
|
35
|
+
} CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE;
|
36
|
+
|
37
|
+
typedef struct _CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE
|
38
|
+
{
|
39
|
+
UNITY_LINE_TYPE LineNumber;
|
40
|
+
bool ReturnVal;
|
41
|
+
int CallOrder;
|
42
|
+
|
43
|
+
} CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE;
|
44
|
+
|
45
|
+
static struct MockTaskSchedulerInstance
|
46
|
+
{
|
47
|
+
char TaskScheduler_Init_IgnoreBool;
|
48
|
+
CMOCK_MEM_INDEX_TYPE TaskScheduler_Init_CallInstance;
|
49
|
+
char TaskScheduler_Update_IgnoreBool;
|
50
|
+
CMOCK_MEM_INDEX_TYPE TaskScheduler_Update_CallInstance;
|
51
|
+
char TaskScheduler_DoUsart_IgnoreBool;
|
52
|
+
bool TaskScheduler_DoUsart_FinalReturn;
|
53
|
+
CMOCK_MEM_INDEX_TYPE TaskScheduler_DoUsart_CallInstance;
|
54
|
+
char TaskScheduler_DoAdc_IgnoreBool;
|
55
|
+
bool TaskScheduler_DoAdc_FinalReturn;
|
56
|
+
CMOCK_MEM_INDEX_TYPE TaskScheduler_DoAdc_CallInstance;
|
57
|
+
} Mock;
|
58
|
+
|
59
|
+
extern jmp_buf AbortFrame;
|
60
|
+
extern int GlobalExpectCount;
|
61
|
+
extern int GlobalVerifyOrder;
|
62
|
+
|
63
|
+
void MockTaskScheduler_Verify(void)
|
64
|
+
{
|
65
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
66
|
+
CMOCK_MEM_INDEX_TYPE call_instance;
|
67
|
+
call_instance = Mock.TaskScheduler_Init_CallInstance;
|
68
|
+
if (Mock.TaskScheduler_Init_IgnoreBool)
|
69
|
+
call_instance = CMOCK_GUTS_NONE;
|
70
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
71
|
+
{
|
72
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_Init);
|
73
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
74
|
+
}
|
75
|
+
call_instance = Mock.TaskScheduler_Update_CallInstance;
|
76
|
+
if (Mock.TaskScheduler_Update_IgnoreBool)
|
77
|
+
call_instance = CMOCK_GUTS_NONE;
|
78
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
79
|
+
{
|
80
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_Update);
|
81
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
82
|
+
}
|
83
|
+
call_instance = Mock.TaskScheduler_DoUsart_CallInstance;
|
84
|
+
if (Mock.TaskScheduler_DoUsart_IgnoreBool)
|
85
|
+
call_instance = CMOCK_GUTS_NONE;
|
86
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
87
|
+
{
|
88
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_DoUsart);
|
89
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
90
|
+
}
|
91
|
+
call_instance = Mock.TaskScheduler_DoAdc_CallInstance;
|
92
|
+
if (Mock.TaskScheduler_DoAdc_IgnoreBool)
|
93
|
+
call_instance = CMOCK_GUTS_NONE;
|
94
|
+
if (CMOCK_GUTS_NONE != call_instance)
|
95
|
+
{
|
96
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_DoAdc);
|
97
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLess);
|
98
|
+
}
|
99
|
+
}
|
100
|
+
|
101
|
+
void MockTaskScheduler_Init(void)
|
102
|
+
{
|
103
|
+
MockTaskScheduler_Destroy();
|
104
|
+
}
|
105
|
+
|
106
|
+
void MockTaskScheduler_Destroy(void)
|
107
|
+
{
|
108
|
+
CMock_Guts_MemFreeAll();
|
109
|
+
memset(&Mock, 0, sizeof(Mock));
|
110
|
+
GlobalExpectCount = 0;
|
111
|
+
GlobalVerifyOrder = 0;
|
112
|
+
}
|
113
|
+
|
114
|
+
void TaskScheduler_Init(void)
|
115
|
+
{
|
116
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
117
|
+
CMOCK_TaskScheduler_Init_CALL_INSTANCE* cmock_call_instance;
|
118
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_Init);
|
119
|
+
cmock_call_instance = (CMOCK_TaskScheduler_Init_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.TaskScheduler_Init_CallInstance);
|
120
|
+
Mock.TaskScheduler_Init_CallInstance = CMock_Guts_MemNext(Mock.TaskScheduler_Init_CallInstance);
|
121
|
+
if (Mock.TaskScheduler_Init_IgnoreBool)
|
122
|
+
{
|
123
|
+
UNITY_CLR_DETAILS();
|
124
|
+
return;
|
125
|
+
}
|
126
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
127
|
+
cmock_line = cmock_call_instance->LineNumber;
|
128
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
129
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
130
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
131
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
132
|
+
UNITY_CLR_DETAILS();
|
133
|
+
}
|
134
|
+
|
135
|
+
void TaskScheduler_Init_CMockIgnore(void)
|
136
|
+
{
|
137
|
+
Mock.TaskScheduler_Init_IgnoreBool = (char)1;
|
138
|
+
}
|
139
|
+
|
140
|
+
void TaskScheduler_Init_CMockStopIgnore(void)
|
141
|
+
{
|
142
|
+
Mock.TaskScheduler_Init_IgnoreBool = (char)0;
|
143
|
+
}
|
144
|
+
|
145
|
+
void TaskScheduler_Init_CMockExpect(UNITY_LINE_TYPE cmock_line)
|
146
|
+
{
|
147
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_TaskScheduler_Init_CALL_INSTANCE));
|
148
|
+
CMOCK_TaskScheduler_Init_CALL_INSTANCE* cmock_call_instance = (CMOCK_TaskScheduler_Init_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
149
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
150
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
151
|
+
Mock.TaskScheduler_Init_CallInstance = CMock_Guts_MemChain(Mock.TaskScheduler_Init_CallInstance, cmock_guts_index);
|
152
|
+
Mock.TaskScheduler_Init_IgnoreBool = (char)0;
|
153
|
+
cmock_call_instance->LineNumber = cmock_line;
|
154
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
155
|
+
}
|
156
|
+
|
157
|
+
void TaskScheduler_Update(uint32 time)
|
158
|
+
{
|
159
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
160
|
+
CMOCK_TaskScheduler_Update_CALL_INSTANCE* cmock_call_instance;
|
161
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_Update);
|
162
|
+
cmock_call_instance = (CMOCK_TaskScheduler_Update_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.TaskScheduler_Update_CallInstance);
|
163
|
+
Mock.TaskScheduler_Update_CallInstance = CMock_Guts_MemNext(Mock.TaskScheduler_Update_CallInstance);
|
164
|
+
if (Mock.TaskScheduler_Update_IgnoreBool)
|
165
|
+
{
|
166
|
+
UNITY_CLR_DETAILS();
|
167
|
+
return;
|
168
|
+
}
|
169
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
170
|
+
cmock_line = cmock_call_instance->LineNumber;
|
171
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
172
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
173
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
174
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
175
|
+
{
|
176
|
+
UNITY_SET_DETAILS(CMockString_TaskScheduler_Update,CMockString_time);
|
177
|
+
UNITY_TEST_ASSERT_EQUAL_UINT32(cmock_call_instance->Expected_time, time, cmock_line, CMockStringMismatch);
|
178
|
+
}
|
179
|
+
UNITY_CLR_DETAILS();
|
180
|
+
}
|
181
|
+
|
182
|
+
void CMockExpectParameters_TaskScheduler_Update(CMOCK_TaskScheduler_Update_CALL_INSTANCE* cmock_call_instance, uint32 time);
|
183
|
+
void CMockExpectParameters_TaskScheduler_Update(CMOCK_TaskScheduler_Update_CALL_INSTANCE* cmock_call_instance, uint32 time)
|
184
|
+
{
|
185
|
+
cmock_call_instance->Expected_time = time;
|
186
|
+
}
|
187
|
+
|
188
|
+
void TaskScheduler_Update_CMockIgnore(void)
|
189
|
+
{
|
190
|
+
Mock.TaskScheduler_Update_IgnoreBool = (char)1;
|
191
|
+
}
|
192
|
+
|
193
|
+
void TaskScheduler_Update_CMockStopIgnore(void)
|
194
|
+
{
|
195
|
+
Mock.TaskScheduler_Update_IgnoreBool = (char)0;
|
196
|
+
}
|
197
|
+
|
198
|
+
void TaskScheduler_Update_CMockExpect(UNITY_LINE_TYPE cmock_line, uint32 time)
|
199
|
+
{
|
200
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_TaskScheduler_Update_CALL_INSTANCE));
|
201
|
+
CMOCK_TaskScheduler_Update_CALL_INSTANCE* cmock_call_instance = (CMOCK_TaskScheduler_Update_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
202
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
203
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
204
|
+
Mock.TaskScheduler_Update_CallInstance = CMock_Guts_MemChain(Mock.TaskScheduler_Update_CallInstance, cmock_guts_index);
|
205
|
+
Mock.TaskScheduler_Update_IgnoreBool = (char)0;
|
206
|
+
cmock_call_instance->LineNumber = cmock_line;
|
207
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
208
|
+
CMockExpectParameters_TaskScheduler_Update(cmock_call_instance, time);
|
209
|
+
}
|
210
|
+
|
211
|
+
bool TaskScheduler_DoUsart(void)
|
212
|
+
{
|
213
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
214
|
+
CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE* cmock_call_instance;
|
215
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_DoUsart);
|
216
|
+
cmock_call_instance = (CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.TaskScheduler_DoUsart_CallInstance);
|
217
|
+
Mock.TaskScheduler_DoUsart_CallInstance = CMock_Guts_MemNext(Mock.TaskScheduler_DoUsart_CallInstance);
|
218
|
+
if (Mock.TaskScheduler_DoUsart_IgnoreBool)
|
219
|
+
{
|
220
|
+
UNITY_CLR_DETAILS();
|
221
|
+
if (cmock_call_instance == NULL)
|
222
|
+
return Mock.TaskScheduler_DoUsart_FinalReturn;
|
223
|
+
Mock.TaskScheduler_DoUsart_FinalReturn = cmock_call_instance->ReturnVal;
|
224
|
+
return cmock_call_instance->ReturnVal;
|
225
|
+
}
|
226
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
227
|
+
cmock_line = cmock_call_instance->LineNumber;
|
228
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
229
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
230
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
231
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
232
|
+
UNITY_CLR_DETAILS();
|
233
|
+
return cmock_call_instance->ReturnVal;
|
234
|
+
}
|
235
|
+
|
236
|
+
void TaskScheduler_DoUsart_CMockIgnoreAndReturn(UNITY_LINE_TYPE cmock_line, bool cmock_to_return)
|
237
|
+
{
|
238
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE));
|
239
|
+
CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE* cmock_call_instance = (CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
240
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
241
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
242
|
+
Mock.TaskScheduler_DoUsart_CallInstance = CMock_Guts_MemChain(Mock.TaskScheduler_DoUsart_CallInstance, cmock_guts_index);
|
243
|
+
Mock.TaskScheduler_DoUsart_IgnoreBool = (char)0;
|
244
|
+
cmock_call_instance->LineNumber = cmock_line;
|
245
|
+
cmock_call_instance->ReturnVal = cmock_to_return;
|
246
|
+
Mock.TaskScheduler_DoUsart_IgnoreBool = (char)1;
|
247
|
+
}
|
248
|
+
|
249
|
+
void TaskScheduler_DoUsart_CMockStopIgnore(void)
|
250
|
+
{
|
251
|
+
if(Mock.TaskScheduler_DoUsart_IgnoreBool)
|
252
|
+
Mock.TaskScheduler_DoUsart_CallInstance = CMock_Guts_MemNext(Mock.TaskScheduler_DoUsart_CallInstance);
|
253
|
+
Mock.TaskScheduler_DoUsart_IgnoreBool = (char)0;
|
254
|
+
}
|
255
|
+
|
256
|
+
void TaskScheduler_DoUsart_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, bool cmock_to_return)
|
257
|
+
{
|
258
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE));
|
259
|
+
CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE* cmock_call_instance = (CMOCK_TaskScheduler_DoUsart_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
260
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
261
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
262
|
+
Mock.TaskScheduler_DoUsart_CallInstance = CMock_Guts_MemChain(Mock.TaskScheduler_DoUsart_CallInstance, cmock_guts_index);
|
263
|
+
Mock.TaskScheduler_DoUsart_IgnoreBool = (char)0;
|
264
|
+
cmock_call_instance->LineNumber = cmock_line;
|
265
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
266
|
+
cmock_call_instance->ReturnVal = cmock_to_return;
|
267
|
+
}
|
268
|
+
|
269
|
+
bool TaskScheduler_DoAdc(void)
|
270
|
+
{
|
271
|
+
UNITY_LINE_TYPE cmock_line = TEST_LINE_NUM;
|
272
|
+
CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE* cmock_call_instance;
|
273
|
+
UNITY_SET_DETAIL(CMockString_TaskScheduler_DoAdc);
|
274
|
+
cmock_call_instance = (CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE*)CMock_Guts_GetAddressFor(Mock.TaskScheduler_DoAdc_CallInstance);
|
275
|
+
Mock.TaskScheduler_DoAdc_CallInstance = CMock_Guts_MemNext(Mock.TaskScheduler_DoAdc_CallInstance);
|
276
|
+
if (Mock.TaskScheduler_DoAdc_IgnoreBool)
|
277
|
+
{
|
278
|
+
UNITY_CLR_DETAILS();
|
279
|
+
if (cmock_call_instance == NULL)
|
280
|
+
return Mock.TaskScheduler_DoAdc_FinalReturn;
|
281
|
+
Mock.TaskScheduler_DoAdc_FinalReturn = cmock_call_instance->ReturnVal;
|
282
|
+
return cmock_call_instance->ReturnVal;
|
283
|
+
}
|
284
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringCalledMore);
|
285
|
+
cmock_line = cmock_call_instance->LineNumber;
|
286
|
+
if (cmock_call_instance->CallOrder > ++GlobalVerifyOrder)
|
287
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledEarly);
|
288
|
+
if (cmock_call_instance->CallOrder < GlobalVerifyOrder)
|
289
|
+
UNITY_TEST_FAIL(cmock_line, CMockStringCalledLate);
|
290
|
+
UNITY_CLR_DETAILS();
|
291
|
+
return cmock_call_instance->ReturnVal;
|
292
|
+
}
|
293
|
+
|
294
|
+
void TaskScheduler_DoAdc_CMockIgnoreAndReturn(UNITY_LINE_TYPE cmock_line, bool cmock_to_return)
|
295
|
+
{
|
296
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE));
|
297
|
+
CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE* cmock_call_instance = (CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
298
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
299
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
300
|
+
Mock.TaskScheduler_DoAdc_CallInstance = CMock_Guts_MemChain(Mock.TaskScheduler_DoAdc_CallInstance, cmock_guts_index);
|
301
|
+
Mock.TaskScheduler_DoAdc_IgnoreBool = (char)0;
|
302
|
+
cmock_call_instance->LineNumber = cmock_line;
|
303
|
+
cmock_call_instance->ReturnVal = cmock_to_return;
|
304
|
+
Mock.TaskScheduler_DoAdc_IgnoreBool = (char)1;
|
305
|
+
}
|
306
|
+
|
307
|
+
void TaskScheduler_DoAdc_CMockStopIgnore(void)
|
308
|
+
{
|
309
|
+
if(Mock.TaskScheduler_DoAdc_IgnoreBool)
|
310
|
+
Mock.TaskScheduler_DoAdc_CallInstance = CMock_Guts_MemNext(Mock.TaskScheduler_DoAdc_CallInstance);
|
311
|
+
Mock.TaskScheduler_DoAdc_IgnoreBool = (char)0;
|
312
|
+
}
|
313
|
+
|
314
|
+
void TaskScheduler_DoAdc_CMockExpectAndReturn(UNITY_LINE_TYPE cmock_line, bool cmock_to_return)
|
315
|
+
{
|
316
|
+
CMOCK_MEM_INDEX_TYPE cmock_guts_index = CMock_Guts_MemNew(sizeof(CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE));
|
317
|
+
CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE* cmock_call_instance = (CMOCK_TaskScheduler_DoAdc_CALL_INSTANCE*)CMock_Guts_GetAddressFor(cmock_guts_index);
|
318
|
+
UNITY_TEST_ASSERT_NOT_NULL(cmock_call_instance, cmock_line, CMockStringOutOfMemory);
|
319
|
+
memset(cmock_call_instance, 0, sizeof(*cmock_call_instance));
|
320
|
+
Mock.TaskScheduler_DoAdc_CallInstance = CMock_Guts_MemChain(Mock.TaskScheduler_DoAdc_CallInstance, cmock_guts_index);
|
321
|
+
Mock.TaskScheduler_DoAdc_IgnoreBool = (char)0;
|
322
|
+
cmock_call_instance->LineNumber = cmock_line;
|
323
|
+
cmock_call_instance->CallOrder = ++GlobalExpectCount;
|
324
|
+
cmock_call_instance->ReturnVal = cmock_to_return;
|
325
|
+
}
|
326
|
+
|