ceedling 0.31.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +19 -11
- data/Gemfile.lock +31 -24
- data/README.md +716 -75
- data/Rakefile +15 -0
- data/assets/ceedling +6 -0
- data/assets/default_gitignore +7 -5
- data/assets/example_file.c +11 -0
- data/assets/example_file.h +9 -0
- data/assets/example_file_call.c +13 -0
- data/assets/example_file_call.h +13 -0
- data/assets/project_as_gem.yml +360 -50
- data/assets/project_with_guts.yml +361 -51
- data/assets/test_example_file.c +9 -2
- data/assets/test_example_file_boom.c +9 -2
- data/assets/test_example_file_crash.c +25 -0
- data/assets/test_example_file_success.c +9 -2
- data/assets/test_example_file_unity_printf.c +8 -1
- data/assets/test_example_file_verbose.c +8 -1
- data/assets/test_example_file_with_mock.c +20 -0
- data/assets/test_example_with_parameterized_tests.c +12 -3
- data/assets/tests_with_defines/src/adc_hardware.c +8 -1
- data/assets/tests_with_defines/src/adc_hardware.h +7 -0
- data/assets/tests_with_defines/src/adc_hardware_configurator.c +8 -1
- data/assets/tests_with_defines/src/adc_hardware_configurator.h +8 -1
- data/assets/tests_with_defines/test/test_adc_hardware.c +7 -0
- data/assets/tests_with_defines/test/test_adc_hardware_special.c +7 -0
- data/assets/tests_with_preprocessing/src/adc_hardwareA.c +17 -0
- data/assets/tests_with_preprocessing/src/adc_hardwareA.h +13 -0
- data/assets/tests_with_preprocessing/src/adc_hardwareB.c +14 -0
- data/assets/tests_with_preprocessing/src/adc_hardwareB.h +13 -0
- data/assets/tests_with_preprocessing/src/adc_hardwareC.c +14 -0
- data/assets/tests_with_preprocessing/src/adc_hardwareC.h +13 -0
- data/assets/tests_with_preprocessing/src/adc_hardware_configuratorA.h +13 -0
- data/assets/tests_with_preprocessing/src/adc_hardware_configuratorB.h +15 -0
- data/assets/tests_with_preprocessing/src/adc_hardware_configuratorC.h +15 -0
- data/assets/tests_with_preprocessing/test/test_adc_hardwareA.c +41 -0
- data/assets/tests_with_preprocessing/test/test_adc_hardwareB.c +25 -0
- data/assets/tests_with_preprocessing/test/test_adc_hardwareC.c +29 -0
- data/assets/uncovered_example_file.c +7 -0
- data/bin/actions_wrapper.rb +50 -0
- data/bin/app_cfg.rb +134 -0
- data/bin/ceedling +139 -329
- data/bin/cli.rb +542 -0
- data/bin/cli_handler.rb +480 -0
- data/bin/cli_helper.rb +507 -0
- data/bin/configinator.rb +111 -0
- data/bin/mixinator.rb +136 -0
- data/bin/mixins.rb +12 -0
- data/bin/objects.yml +80 -0
- data/bin/path_validator.rb +54 -0
- data/bin/projectinator.rb +244 -0
- data/bin/versionator.rb +81 -0
- data/build/test/dependencies/AdcConductor.d +2 -0
- data/build/test/dependencies/AdcHardware.d +3 -0
- data/build/test/dependencies/AdcModel.d +3 -0
- data/build/test/dependencies/Executor.d +3 -0
- data/build/test/dependencies/Main.d +10 -0
- data/build/test/dependencies/MockAdcConductor.d +9 -0
- data/build/test/dependencies/MockAdcHardware.d +9 -0
- data/build/test/dependencies/MockAdcHardwareConfigurator.d +10 -0
- data/build/test/dependencies/MockAdcModel.d +9 -0
- data/build/test/dependencies/MockAdcTemperatureSensor.d +10 -0
- data/build/test/dependencies/MockExecutor.d +9 -0
- data/build/test/dependencies/MockIntrinsicsWrapper.d +9 -0
- data/build/test/dependencies/MockModel.d +9 -0
- data/build/test/dependencies/MockTaskScheduler.d +9 -0
- data/build/test/dependencies/MockTemperatureCalculator.d +10 -0
- data/build/test/dependencies/MockTemperatureFilter.d +10 -0
- data/build/test/dependencies/MockTimerConductor.d +9 -0
- data/build/test/dependencies/MockTimerConfigurator.d +10 -0
- data/build/test/dependencies/MockTimerHardware.d +9 -0
- data/build/test/dependencies/MockTimerInterruptHandler.d +10 -0
- data/build/test/dependencies/MockTimerModel.d +9 -0
- data/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d +10 -0
- data/build/test/dependencies/MockUsartConductor.d +9 -0
- data/build/test/dependencies/MockUsartConfigurator.d +10 -0
- data/build/test/dependencies/MockUsartHardware.d +9 -0
- data/build/test/dependencies/MockUsartModel.d +9 -0
- data/build/test/dependencies/MockUsartPutChar.d +9 -0
- data/build/test/dependencies/Model.d +2 -0
- data/build/test/dependencies/TaskScheduler.d +2 -0
- data/build/test/dependencies/TemperatureCalculator.d +2 -0
- data/build/test/dependencies/TemperatureFilter.d +2 -0
- data/build/test/dependencies/TestAdcConductor.d +7 -0
- data/build/test/dependencies/TestAdcConductor_runner.d +10 -0
- data/build/test/dependencies/TestAdcHardware.d +8 -0
- data/build/test/dependencies/TestAdcHardware_runner.d +11 -0
- data/build/test/dependencies/TestAdcModel.d +10 -0
- data/build/test/dependencies/TestAdcModel_runner.d +13 -0
- data/build/test/dependencies/TestExecutor.d +14 -0
- data/build/test/dependencies/TestExecutor_runner.d +17 -0
- data/build/test/dependencies/TestMain.d +5 -0
- data/build/test/dependencies/TestMain_runner.d +8 -0
- data/build/test/dependencies/TestModel.d +7 -0
- data/build/test/dependencies/TestModel_runner.d +10 -0
- data/build/test/dependencies/TestTaskScheduler.d +4 -0
- data/build/test/dependencies/TestTaskScheduler_runner.d +5 -0
- data/build/test/dependencies/TestTemperatureCalculator.d +3 -0
- data/build/test/dependencies/TestTemperatureCalculator_runner.d +4 -0
- data/build/test/dependencies/TestTemperatureFilter.d +4 -0
- data/build/test/dependencies/TestTemperatureFilter_runner.d +5 -0
- data/build/test/dependencies/TestTimerConductor.d +10 -0
- data/build/test/dependencies/TestTimerConductor_runner.d +13 -0
- data/build/test/dependencies/TestTimerHardware.d +6 -0
- data/build/test/dependencies/TestTimerHardware_runner.d +9 -0
- data/build/test/dependencies/TestTimerIntegrated.d +10 -0
- data/build/test/dependencies/TestTimerIntegrated_runner.d +13 -0
- data/build/test/dependencies/TestTimerModel.d +6 -0
- data/build/test/dependencies/TestTimerModel_runner.d +9 -0
- data/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d +5 -0
- data/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d +5 -0
- data/build/test/dependencies/TestUsartConductor.d +10 -0
- data/build/test/dependencies/TestUsartConductor_runner.d +13 -0
- data/build/test/dependencies/TestUsartHardware.d +8 -0
- data/build/test/dependencies/TestUsartHardware_runner.d +11 -0
- data/build/test/dependencies/TestUsartIntegrated.d +15 -0
- data/build/test/dependencies/TestUsartIntegrated_runner.d +18 -0
- data/build/test/dependencies/TestUsartModel.d +8 -0
- data/build/test/dependencies/TestUsartModel_runner.d +11 -0
- data/build/test/dependencies/TimerConductor.d +3 -0
- data/build/test/dependencies/TimerHardware.d +3 -0
- data/build/test/dependencies/TimerModel.d +2 -0
- data/build/test/dependencies/UnityHelper.d +5 -0
- data/build/test/dependencies/UsartBaudRateRegisterCalculator.d +3 -0
- data/build/test/dependencies/UsartConductor.d +3 -0
- data/build/test/dependencies/UsartHardware.d +3 -0
- data/build/test/dependencies/UsartModel.d +3 -0
- data/build/test/dependencies/cmock.d +6 -0
- data/build/test/dependencies/unity.d +4 -0
- data/build/test/mocks/TestAdcConductor/MockAdcHardware.c +445 -0
- data/build/test/mocks/TestAdcConductor/MockAdcHardware.h +91 -0
- data/build/test/mocks/TestAdcConductor/MockAdcModel.c +618 -0
- data/build/test/mocks/TestAdcConductor/MockAdcModel.h +103 -0
- data/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.c +317 -0
- data/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.h +79 -0
- data/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.c +351 -0
- data/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.h +79 -0
- data/build/test/mocks/TestAdcModel/MockTaskScheduler.c +458 -0
- data/build/test/mocks/TestAdcModel/MockTaskScheduler.h +91 -0
- data/build/test/mocks/TestAdcModel/MockTemperatureCalculator.c +159 -0
- data/build/test/mocks/TestAdcModel/MockTemperatureCalculator.h +55 -0
- data/build/test/mocks/TestAdcModel/MockTemperatureFilter.c +347 -0
- data/build/test/mocks/TestAdcModel/MockTemperatureFilter.h +79 -0
- data/build/test/mocks/TestExecutor/MockAdcConductor.c +556 -0
- data/build/test/mocks/TestExecutor/MockAdcConductor.h +103 -0
- data/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.c +223 -0
- data/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.h +67 -0
- data/build/test/mocks/TestExecutor/MockModel.c +129 -0
- data/build/test/mocks/TestExecutor/MockModel.h +55 -0
- data/build/test/mocks/TestExecutor/MockTimerConductor.c +223 -0
- data/build/test/mocks/TestExecutor/MockTimerConductor.h +67 -0
- data/build/test/mocks/TestExecutor/MockUsartConductor.c +223 -0
- data/build/test/mocks/TestExecutor/MockUsartConductor.h +67 -0
- data/build/test/mocks/TestMain/MockExecutor.c +240 -0
- data/build/test/mocks/TestMain/MockExecutor.h +67 -0
- data/build/test/mocks/TestModel/MockTaskScheduler.c +458 -0
- data/build/test/mocks/TestModel/MockTaskScheduler.h +91 -0
- data/build/test/mocks/TestModel/MockTemperatureFilter.c +347 -0
- data/build/test/mocks/TestModel/MockTemperatureFilter.h +79 -0
- data/build/test/mocks/TestTimerConductor/MockTimerHardware.c +129 -0
- data/build/test/mocks/TestTimerConductor/MockTimerHardware.h +55 -0
- data/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.c +347 -0
- data/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.h +79 -0
- data/build/test/mocks/TestTimerConductor/MockTimerModel.c +142 -0
- data/build/test/mocks/TestTimerConductor/MockTimerModel.h +55 -0
- data/build/test/mocks/TestTimerHardware/MockTimerConfigurator.c +787 -0
- data/build/test/mocks/TestTimerHardware/MockTimerConfigurator.h +139 -0
- data/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.c +458 -0
- data/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.h +91 -0
- data/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.c +787 -0
- data/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.h +139 -0
- data/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.c +347 -0
- data/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.h +79 -0
- data/build/test/mocks/TestTimerModel/MockTaskScheduler.c +458 -0
- data/build/test/mocks/TestTimerModel/MockTaskScheduler.h +91 -0
- data/build/test/mocks/TestUsartConductor/MockTaskScheduler.c +458 -0
- data/build/test/mocks/TestUsartConductor/MockTaskScheduler.h +91 -0
- data/build/test/mocks/TestUsartConductor/MockUsartHardware.c +249 -0
- data/build/test/mocks/TestUsartConductor/MockUsartHardware.h +67 -0
- data/build/test/mocks/TestUsartConductor/MockUsartModel.c +368 -0
- data/build/test/mocks/TestUsartConductor/MockUsartModel.h +79 -0
- data/build/test/mocks/TestUsartHardware/MockUsartConfigurator.c +612 -0
- data/build/test/mocks/TestUsartHardware/MockUsartConfigurator.h +115 -0
- data/build/test/mocks/TestUsartHardware/MockUsartPutChar.c +142 -0
- data/build/test/mocks/TestUsartHardware/MockUsartPutChar.h +55 -0
- data/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.c +458 -0
- data/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.h +91 -0
- data/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.c +347 -0
- data/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.h +79 -0
- data/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.c +166 -0
- data/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.h +55 -0
- data/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.c +612 -0
- data/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.h +115 -0
- data/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.c +142 -0
- data/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.h +55 -0
- data/build/test/mocks/TestUsartModel/MockTemperatureFilter.c +347 -0
- data/build/test/mocks/TestUsartModel/MockTemperatureFilter.h +79 -0
- data/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.c +166 -0
- data/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.h +55 -0
- data/build/test/out/TestAdcConductor/AdcConductor.o +0 -0
- data/build/test/out/TestAdcConductor/MockAdcHardware.o +0 -0
- data/build/test/out/TestAdcConductor/MockAdcModel.o +0 -0
- data/build/test/out/TestAdcConductor/TestAdcConductor.o +0 -0
- data/build/test/out/TestAdcConductor/TestAdcConductor.out +0 -0
- data/build/test/out/TestAdcConductor/TestAdcConductor_runner.o +0 -0
- data/build/test/out/TestAdcConductor/UnityHelper.o +0 -0
- data/build/test/out/TestAdcConductor/cmock.o +0 -0
- data/build/test/out/TestAdcConductor/unity.o +0 -0
- data/build/test/out/TestAdcHardware/AdcHardware.o +0 -0
- data/build/test/out/TestAdcHardware/MockAdcHardwareConfigurator.o +0 -0
- data/build/test/out/TestAdcHardware/MockAdcTemperatureSensor.o +0 -0
- data/build/test/out/TestAdcHardware/TestAdcHardware.o +0 -0
- data/build/test/out/TestAdcHardware/TestAdcHardware.out +0 -0
- data/build/test/out/TestAdcHardware/TestAdcHardware_runner.o +0 -0
- data/build/test/out/TestAdcHardware/UnityHelper.o +0 -0
- data/build/test/out/TestAdcHardware/cmock.o +0 -0
- data/build/test/out/TestAdcHardware/unity.o +0 -0
- data/build/test/out/TestAdcModel/AdcModel.o +0 -0
- data/build/test/out/TestAdcModel/MockTaskScheduler.o +0 -0
- data/build/test/out/TestAdcModel/MockTemperatureCalculator.o +0 -0
- data/build/test/out/TestAdcModel/MockTemperatureFilter.o +0 -0
- data/build/test/out/TestAdcModel/TestAdcModel.o +0 -0
- data/build/test/out/TestAdcModel/TestAdcModel.out +0 -0
- data/build/test/out/TestAdcModel/TestAdcModel_runner.o +0 -0
- data/build/test/out/TestAdcModel/UnityHelper.o +0 -0
- data/build/test/out/TestAdcModel/cmock.o +0 -0
- data/build/test/out/TestAdcModel/unity.o +0 -0
- data/build/test/out/TestExecutor/Executor.o +0 -0
- data/build/test/out/TestExecutor/MockAdcConductor.o +0 -0
- data/build/test/out/TestExecutor/MockIntrinsicsWrapper.o +0 -0
- data/build/test/out/TestExecutor/MockModel.o +0 -0
- data/build/test/out/TestExecutor/MockTimerConductor.o +0 -0
- data/build/test/out/TestExecutor/MockUsartConductor.o +0 -0
- data/build/test/out/TestExecutor/TestExecutor.o +0 -0
- data/build/test/out/TestExecutor/TestExecutor.out +0 -0
- data/build/test/out/TestExecutor/TestExecutor_runner.o +0 -0
- data/build/test/out/TestExecutor/UnityHelper.o +0 -0
- data/build/test/out/TestExecutor/cmock.o +0 -0
- data/build/test/out/TestExecutor/unity.o +0 -0
- data/build/test/out/TestMain/Main.o +0 -0
- data/build/test/out/TestMain/MockExecutor.o +0 -0
- data/build/test/out/TestMain/TestMain.o +0 -0
- data/build/test/out/TestMain/TestMain.out +0 -0
- data/build/test/out/TestMain/TestMain_runner.o +0 -0
- data/build/test/out/TestMain/UnityHelper.o +0 -0
- data/build/test/out/TestMain/cmock.o +0 -0
- data/build/test/out/TestMain/unity.o +0 -0
- data/build/test/out/TestModel/MockTaskScheduler.o +0 -0
- data/build/test/out/TestModel/MockTemperatureFilter.o +0 -0
- data/build/test/out/TestModel/Model.o +0 -0
- data/build/test/out/TestModel/TestModel.o +0 -0
- data/build/test/out/TestModel/TestModel.out +0 -0
- data/build/test/out/TestModel/TestModel_runner.o +0 -0
- data/build/test/out/TestModel/UnityHelper.o +0 -0
- data/build/test/out/TestModel/cmock.o +0 -0
- data/build/test/out/TestModel/unity.o +0 -0
- data/build/test/out/TestTaskScheduler/TaskScheduler.o +0 -0
- data/build/test/out/TestTaskScheduler/TestTaskScheduler.o +0 -0
- data/build/test/out/TestTaskScheduler/TestTaskScheduler.out +0 -0
- data/build/test/out/TestTaskScheduler/TestTaskScheduler_runner.o +0 -0
- data/build/test/out/TestTaskScheduler/UnityHelper.o +0 -0
- data/build/test/out/TestTaskScheduler/unity.o +0 -0
- data/build/test/out/TestTemperatureCalculator/TemperatureCalculator.o +0 -0
- data/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.o +0 -0
- data/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.out +0 -0
- data/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator_runner.o +0 -0
- data/build/test/out/TestTemperatureCalculator/UnityHelper.o +0 -0
- data/build/test/out/TestTemperatureCalculator/unity.o +0 -0
- data/build/test/out/TestTemperatureFilter/TemperatureFilter.o +0 -0
- data/build/test/out/TestTemperatureFilter/TestTemperatureFilter.o +0 -0
- data/build/test/out/TestTemperatureFilter/TestTemperatureFilter.out +0 -0
- data/build/test/out/TestTemperatureFilter/TestTemperatureFilter_runner.o +0 -0
- data/build/test/out/TestTemperatureFilter/UnityHelper.o +0 -0
- data/build/test/out/TestTemperatureFilter/unity.o +0 -0
- data/build/test/out/TestTimerConductor/MockTimerHardware.o +0 -0
- data/build/test/out/TestTimerConductor/MockTimerInterruptHandler.o +0 -0
- data/build/test/out/TestTimerConductor/MockTimerModel.o +0 -0
- data/build/test/out/TestTimerConductor/TestTimerConductor.o +0 -0
- data/build/test/out/TestTimerConductor/TestTimerConductor.out +0 -0
- data/build/test/out/TestTimerConductor/TestTimerConductor_runner.o +0 -0
- data/build/test/out/TestTimerConductor/TimerConductor.o +0 -0
- data/build/test/out/TestTimerConductor/UnityHelper.o +0 -0
- data/build/test/out/TestTimerConductor/cmock.o +0 -0
- data/build/test/out/TestTimerConductor/unity.o +0 -0
- data/build/test/out/TestTimerHardware/MockTimerConfigurator.o +0 -0
- data/build/test/out/TestTimerHardware/TestTimerHardware.o +0 -0
- data/build/test/out/TestTimerHardware/TestTimerHardware.out +0 -0
- data/build/test/out/TestTimerHardware/TestTimerHardware_runner.o +0 -0
- data/build/test/out/TestTimerHardware/TimerHardware.o +0 -0
- data/build/test/out/TestTimerHardware/UnityHelper.o +0 -0
- data/build/test/out/TestTimerHardware/cmock.o +0 -0
- data/build/test/out/TestTimerHardware/unity.o +0 -0
- data/build/test/out/TestTimerIntegrated/MockTaskScheduler.o +0 -0
- data/build/test/out/TestTimerIntegrated/MockTimerConfigurator.o +0 -0
- data/build/test/out/TestTimerIntegrated/MockTimerInterruptHandler.o +0 -0
- data/build/test/out/TestTimerIntegrated/TestTimerIntegrated.o +0 -0
- data/build/test/out/TestTimerIntegrated/TestTimerIntegrated.out +0 -0
- data/build/test/out/TestTimerIntegrated/TestTimerIntegrated_runner.o +0 -0
- data/build/test/out/TestTimerIntegrated/TimerConductor.o +0 -0
- data/build/test/out/TestTimerIntegrated/TimerHardware.o +0 -0
- data/build/test/out/TestTimerIntegrated/TimerModel.o +0 -0
- data/build/test/out/TestTimerIntegrated/UnityHelper.o +0 -0
- data/build/test/out/TestTimerIntegrated/cmock.o +0 -0
- data/build/test/out/TestTimerIntegrated/unity.o +0 -0
- data/build/test/out/TestTimerModel/MockTaskScheduler.o +0 -0
- data/build/test/out/TestTimerModel/TestTimerModel.o +0 -0
- data/build/test/out/TestTimerModel/TestTimerModel.out +0 -0
- data/build/test/out/TestTimerModel/TestTimerModel_runner.o +0 -0
- data/build/test/out/TestTimerModel/TimerModel.o +0 -0
- data/build/test/out/TestTimerModel/UnityHelper.o +0 -0
- data/build/test/out/TestTimerModel/cmock.o +0 -0
- data/build/test/out/TestTimerModel/unity.o +0 -0
- data/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.o +0 -0
- data/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.out +0 -0
- data/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator_runner.o +0 -0
- data/build/test/out/TestUsartBaudRateRegisterCalculator/UnityHelper.o +0 -0
- data/build/test/out/TestUsartBaudRateRegisterCalculator/UsartBaudRateRegisterCalculator.o +0 -0
- data/build/test/out/TestUsartBaudRateRegisterCalculator/unity.o +0 -0
- data/build/test/out/TestUsartConductor/MockTaskScheduler.o +0 -0
- data/build/test/out/TestUsartConductor/MockUsartHardware.o +0 -0
- data/build/test/out/TestUsartConductor/MockUsartModel.o +0 -0
- data/build/test/out/TestUsartConductor/TestUsartConductor.o +0 -0
- data/build/test/out/TestUsartConductor/TestUsartConductor.out +0 -0
- data/build/test/out/TestUsartConductor/TestUsartConductor_runner.o +0 -0
- data/build/test/out/TestUsartConductor/UnityHelper.o +0 -0
- data/build/test/out/TestUsartConductor/UsartConductor.o +0 -0
- data/build/test/out/TestUsartConductor/cmock.o +0 -0
- data/build/test/out/TestUsartConductor/unity.o +0 -0
- data/build/test/out/TestUsartHardware/MockUsartConfigurator.o +0 -0
- data/build/test/out/TestUsartHardware/MockUsartPutChar.o +0 -0
- data/build/test/out/TestUsartHardware/TestUsartHardware.o +0 -0
- data/build/test/out/TestUsartHardware/TestUsartHardware.out +0 -0
- data/build/test/out/TestUsartHardware/TestUsartHardware_runner.o +0 -0
- data/build/test/out/TestUsartHardware/UnityHelper.o +0 -0
- data/build/test/out/TestUsartHardware/UsartHardware.o +0 -0
- data/build/test/out/TestUsartHardware/cmock.o +0 -0
- data/build/test/out/TestUsartHardware/unity.o +0 -0
- data/build/test/out/TestUsartIntegrated/MockTaskScheduler.o +0 -0
- data/build/test/out/TestUsartIntegrated/MockTemperatureFilter.o +0 -0
- data/build/test/out/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.o +0 -0
- data/build/test/out/TestUsartIntegrated/MockUsartConfigurator.o +0 -0
- data/build/test/out/TestUsartIntegrated/MockUsartPutChar.o +0 -0
- data/build/test/out/TestUsartIntegrated/TestUsartIntegrated.o +0 -0
- data/build/test/out/TestUsartIntegrated/TestUsartIntegrated.out +0 -0
- data/build/test/out/TestUsartIntegrated/TestUsartIntegrated_runner.o +0 -0
- data/build/test/out/TestUsartIntegrated/UnityHelper.o +0 -0
- data/build/test/out/TestUsartIntegrated/UsartConductor.o +0 -0
- data/build/test/out/TestUsartIntegrated/UsartHardware.o +0 -0
- data/build/test/out/TestUsartIntegrated/UsartModel.o +0 -0
- data/build/test/out/TestUsartIntegrated/cmock.o +0 -0
- data/build/test/out/TestUsartIntegrated/unity.o +0 -0
- data/build/test/out/TestUsartModel/MockTemperatureFilter.o +0 -0
- data/build/test/out/TestUsartModel/MockUsartBaudRateRegisterCalculator.o +0 -0
- data/build/test/out/TestUsartModel/TestUsartModel.o +0 -0
- data/build/test/out/TestUsartModel/TestUsartModel.out +0 -0
- data/build/test/out/TestUsartModel/TestUsartModel_runner.o +0 -0
- data/build/test/out/TestUsartModel/UnityHelper.o +0 -0
- data/build/test/out/TestUsartModel/UsartModel.o +0 -0
- data/build/test/out/TestUsartModel/cmock.o +0 -0
- data/build/test/out/TestUsartModel/unity.o +0 -0
- data/build/test/preprocess/files/TestAdcConductor/AdcHardware.h +16 -0
- data/build/test/preprocess/files/TestAdcConductor/AdcModel.h +18 -0
- data/build/test/preprocess/files/TestAdcConductor/TestAdcConductor.c +106 -0
- data/build/test/preprocess/files/TestAdcHardware/AdcHardwareConfigurator.h +14 -0
- data/build/test/preprocess/files/TestAdcHardware/AdcTemperatureSensor.h +14 -0
- data/build/test/preprocess/files/TestAdcHardware/TestAdcHardware.c +59 -0
- data/build/test/preprocess/files/TestAdcModel/TaskScheduler.h +16 -0
- data/build/test/preprocess/files/TestAdcModel/TemperatureCalculator.h +10 -0
- data/build/test/preprocess/files/TestAdcModel/TemperatureFilter.h +14 -0
- data/build/test/preprocess/files/TestAdcModel/TestAdcModel.c +41 -0
- data/build/test/preprocess/files/TestExecutor/AdcConductor.h +18 -0
- data/build/test/preprocess/files/TestExecutor/IntrinsicsWrapper.h +10 -0
- data/build/test/preprocess/files/TestExecutor/Model.h +10 -0
- data/build/test/preprocess/files/TestExecutor/TestExecutor.c +45 -0
- data/build/test/preprocess/files/TestExecutor/TimerConductor.h +12 -0
- data/build/test/preprocess/files/TestExecutor/UsartConductor.h +10 -0
- data/build/test/preprocess/files/TestMain/Executor.h +12 -0
- data/build/test/preprocess/files/TestMain/TestMain.c +31 -0
- data/build/test/preprocess/files/TestModel/TaskScheduler.h +16 -0
- data/build/test/preprocess/files/TestModel/TemperatureFilter.h +14 -0
- data/build/test/preprocess/files/TestModel/TestModel.c +24 -0
- data/build/test/preprocess/files/TestTaskScheduler/TestTaskScheduler.c +168 -0
- data/build/test/preprocess/files/TestTemperatureCalculator/TestTemperatureCalculator.c +52 -0
- data/build/test/preprocess/files/TestTemperatureFilter/TestTemperatureFilter.c +163 -0
- data/build/test/preprocess/files/TestTimerConductor/TestTimerConductor.c +38 -0
- data/build/test/preprocess/files/TestTimerConductor/TimerHardware.h +10 -0
- data/build/test/preprocess/files/TestTimerConductor/TimerInterruptHandler.h +14 -0
- data/build/test/preprocess/files/TestTimerConductor/TimerModel.h +10 -0
- data/build/test/preprocess/files/TestTimerHardware/TestTimerHardware.c +35 -0
- data/build/test/preprocess/files/TestTimerHardware/TimerConfigurator.h +24 -0
- data/build/test/preprocess/files/TestTimerIntegrated/TaskScheduler.h +16 -0
- data/build/test/preprocess/files/TestTimerIntegrated/TestTimerIntegrated.c +54 -0
- data/build/test/preprocess/files/TestTimerIntegrated/TimerConfigurator.h +24 -0
- data/build/test/preprocess/files/TestTimerIntegrated/TimerInterruptHandler.h +14 -0
- data/build/test/preprocess/files/TestTimerModel/TaskScheduler.h +16 -0
- data/build/test/preprocess/files/TestTimerModel/TestTimerModel.c +21 -0
- data/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c +46 -0
- data/build/test/preprocess/files/TestUsartConductor/TaskScheduler.h +16 -0
- data/build/test/preprocess/files/TestUsartConductor/TestUsartConductor.c +47 -0
- data/build/test/preprocess/files/TestUsartConductor/UsartHardware.h +12 -0
- data/build/test/preprocess/files/TestUsartConductor/UsartModel.h +14 -0
- data/build/test/preprocess/files/TestUsartHardware/TestUsartHardware.c +47 -0
- data/build/test/preprocess/files/TestUsartHardware/UsartConfigurator.h +20 -0
- data/build/test/preprocess/files/TestUsartHardware/UsartPutChar.h +10 -0
- data/build/test/preprocess/files/TestUsartIntegrated/TaskScheduler.h +16 -0
- data/build/test/preprocess/files/TestUsartIntegrated/TemperatureFilter.h +14 -0
- data/build/test/preprocess/files/TestUsartIntegrated/TestUsartIntegrated.c +57 -0
- data/build/test/preprocess/files/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h +10 -0
- data/build/test/preprocess/files/TestUsartIntegrated/UsartConfigurator.h +20 -0
- data/build/test/preprocess/files/TestUsartIntegrated/UsartPutChar.h +10 -0
- data/build/test/preprocess/files/TestUsartModel/TemperatureFilter.h +14 -0
- data/build/test/preprocess/files/TestUsartModel/TestUsartModel.c +64 -0
- data/build/test/preprocess/files/TestUsartModel/UsartBaudRateRegisterCalculator.h +10 -0
- data/build/test/preprocess/includes/TestAdcConductor/TestAdcConductor.c.yml +7 -0
- data/build/test/preprocess/includes/TestAdcHardware/TestAdcHardware.c.yml +6 -0
- data/build/test/preprocess/includes/TestAdcModel/TestAdcModel.c.yml +7 -0
- data/build/test/preprocess/includes/TestExecutor/TestExecutor.c.yml +9 -0
- data/build/test/preprocess/includes/TestMain/TestMain.c.yml +5 -0
- data/build/test/preprocess/includes/TestModel/TestModel.c.yml +6 -0
- data/build/test/preprocess/includes/TestTaskScheduler/TestTaskScheduler.c.yml +4 -0
- data/build/test/preprocess/includes/TestTemperatureCalculator/TestTemperatureCalculator.c.yml +3 -0
- data/build/test/preprocess/includes/TestTemperatureFilter/TestTemperatureFilter.c.yml +4 -0
- data/build/test/preprocess/includes/TestTimerConductor/TestTimerConductor.c.yml +7 -0
- data/build/test/preprocess/includes/TestTimerHardware/TestTimerHardware.c.yml +5 -0
- data/build/test/preprocess/includes/TestTimerIntegrated/TestTimerIntegrated.c.yml +9 -0
- data/build/test/preprocess/includes/TestTimerModel/TaskScheduler.h.yml +2 -0
- data/build/test/preprocess/includes/TestTimerModel/TestTimerModel.c.yml +5 -0
- data/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c.yml +4 -0
- data/build/test/preprocess/includes/TestUsartConductor/TaskScheduler.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartConductor/TestUsartConductor.c.yml +7 -0
- data/build/test/preprocess/includes/TestUsartConductor/UsartHardware.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartConductor/UsartModel.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartHardware/TestUsartHardware.c.yml +6 -0
- data/build/test/preprocess/includes/TestUsartHardware/UsartConfigurator.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartHardware/UsartPutChar.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartIntegrated/TaskScheduler.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartIntegrated/TemperatureFilter.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartIntegrated/TestUsartIntegrated.c.yml +12 -0
- data/build/test/preprocess/includes/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartIntegrated/UsartConfigurator.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartIntegrated/UsartPutChar.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartModel/TemperatureFilter.h.yml +2 -0
- data/build/test/preprocess/includes/TestUsartModel/TestUsartModel.c.yml +7 -0
- data/build/test/preprocess/includes/TestUsartModel/UsartBaudRateRegisterCalculator.h.yml +2 -0
- data/build/test/results/TestAdcConductor.pass +47 -0
- data/build/test/results/TestAdcHardware.pass +31 -0
- data/build/test/results/TestAdcModel.pass +27 -0
- data/build/test/results/TestExecutor.pass +23 -0
- data/build/test/results/TestMain.pass +19 -0
- data/build/test/results/TestModel.pass +19 -0
- data/build/test/results/TestTaskScheduler.pass +47 -0
- data/build/test/results/TestTemperatureCalculator.pass +23 -0
- data/build/test/results/TestTemperatureFilter.pass +31 -0
- data/build/test/results/TestTimerConductor.pass +23 -0
- data/build/test/results/TestTimerHardware.pass +19 -0
- data/build/test/results/TestTimerIntegrated.pass +23 -0
- data/build/test/results/TestTimerModel.pass +19 -0
- data/build/test/results/TestUsartBaudRateRegisterCalculator.pass +19 -0
- data/build/test/results/TestUsartConductor.pass +27 -0
- data/build/test/results/TestUsartHardware.pass +23 -0
- data/build/test/results/TestUsartIntegrated.pass +23 -0
- data/build/test/results/TestUsartModel.pass +31 -0
- data/build/test/runners/TestAdcConductor_runner.c +109 -0
- data/build/test/runners/TestAdcHardware_runner.c +100 -0
- data/build/test/runners/TestAdcModel_runner.c +102 -0
- data/build/test/runners/TestExecutor_runner.c +108 -0
- data/build/test/runners/TestMain_runner.c +90 -0
- data/build/test/runners/TestModel_runner.c +94 -0
- data/build/test/runners/TestTaskScheduler_runner.c +98 -0
- data/build/test/runners/TestTemperatureCalculator_runner.c +85 -0
- data/build/test/runners/TestTemperatureFilter_runner.c +90 -0
- data/build/test/runners/TestTimerConductor_runner.c +100 -0
- data/build/test/runners/TestTimerHardware_runner.c +90 -0
- data/build/test/runners/TestTimerIntegrated_runner.c +102 -0
- data/build/test/runners/TestTimerModel_runner.c +90 -0
- data/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c +84 -0
- data/build/test/runners/TestUsartConductor_runner.c +102 -0
- data/build/test/runners/TestUsartHardware_runner.c +96 -0
- data/build/test/runners/TestUsartIntegrated_runner.c +111 -0
- data/build/test/runners/TestUsartModel_runner.c +101 -0
- data/build/vendor/cmock/src/cmock.c +231 -0
- data/build/vendor/cmock/src/cmock.h +47 -0
- data/build/vendor/cmock/src/cmock_internals.h +91 -0
- data/build/vendor/cmock/src/meson.build +12 -0
- data/build/vendor/unity/src/meson.build +17 -0
- data/build/vendor/unity/src/unity.c +2501 -0
- data/build/vendor/unity/src/unity.h +698 -0
- data/build/vendor/unity/src/unity_internals.h +1183 -0
- data/ceedling.gemspec +21 -10
- data/ceedling.sublime-workspace +5947 -253
- data/config/test_environment.rb +6 -2
- data/docs/BreakingChanges.md +250 -0
- data/docs/CODE_OF_CONDUCT.md +138 -0
- data/docs/CONTRIBUTING.md +250 -0
- data/docs/CeedlingPacket.md +5002 -1614
- data/docs/CeedlingUpgrade.md +1 -1
- data/docs/Changelog.md +474 -0
- data/docs/PluginDevelopmentGuide.md +764 -0
- data/docs/ReleaseNotes.md +345 -0
- data/examples/temp_sensor/README.md +18 -0
- data/examples/temp_sensor/build/test/dependencies/AdcConductor.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/AdcHardware.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/AdcModel.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/Executor.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/Main.d +10 -11
- data/examples/temp_sensor/build/test/dependencies/MockAdcConductor.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockAdcHardware.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockAdcHardwareConfigurator.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockAdcModel.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockAdcTemperatureSensor.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockExecutor.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockIntrinsicsWrapper.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/MockModel.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockTaskScheduler.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/MockTemperatureCalculator.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockTemperatureFilter.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockTimerConductor.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/MockTimerConfigurator.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockTimerHardware.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/MockTimerInterruptHandler.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockTimerModel.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockUsartBaudRateRegisterCalculator.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockUsartConductor.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/MockUsartConfigurator.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/MockUsartHardware.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/MockUsartModel.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/MockUsartPutChar.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/Model.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/TaskScheduler.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/TemperatureCalculator.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/TemperatureFilter.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/TestAdcConductor.d +6 -6
- data/examples/temp_sensor/build/test/dependencies/TestAdcConductor_runner.d +7 -8
- data/examples/temp_sensor/build/test/dependencies/TestAdcHardware.d +8 -7
- data/examples/temp_sensor/build/test/dependencies/TestAdcHardware_runner.d +9 -9
- data/examples/temp_sensor/build/test/dependencies/TestAdcModel.d +9 -7
- data/examples/temp_sensor/build/test/dependencies/TestAdcModel_runner.d +10 -10
- data/examples/temp_sensor/build/test/dependencies/TestExecutor.d +10 -8
- data/examples/temp_sensor/build/test/dependencies/TestExecutor_runner.d +11 -11
- data/examples/temp_sensor/build/test/dependencies/TestMain.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestMain_runner.d +6 -6
- data/examples/temp_sensor/build/test/dependencies/TestModel.d +7 -6
- data/examples/temp_sensor/build/test/dependencies/TestModel_runner.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestTaskScheduler_runner.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator.d +3 -5
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureCalculator_runner.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestTemperatureFilter_runner.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestTimerConductor.d +9 -7
- data/examples/temp_sensor/build/test/dependencies/TestTimerConductor_runner.d +10 -10
- data/examples/temp_sensor/build/test/dependencies/TestTimerHardware.d +5 -5
- data/examples/temp_sensor/build/test/dependencies/TestTimerHardware_runner.d +7 -8
- data/examples/temp_sensor/build/test/dependencies/TestTimerIntegrated.d +10 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerIntegrated_runner.d +12 -0
- data/examples/temp_sensor/build/test/dependencies/TestTimerModel.d +5 -5
- data/examples/temp_sensor/build/test/dependencies/TestTimerModel_runner.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator.d +4 -5
- data/examples/temp_sensor/build/test/dependencies/TestUsartBaudRateRegisterCalculator_runner.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/TestUsartConductor.d +10 -7
- data/examples/temp_sensor/build/test/dependencies/TestUsartConductor_runner.d +11 -9
- data/examples/temp_sensor/build/test/dependencies/TestUsartHardware.d +6 -6
- data/examples/temp_sensor/build/test/dependencies/TestUsartHardware_runner.d +8 -8
- data/examples/temp_sensor/build/test/dependencies/TestUsartIntegrated.d +15 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartIntegrated_runner.d +16 -0
- data/examples/temp_sensor/build/test/dependencies/TestUsartModel.d +7 -7
- data/examples/temp_sensor/build/test/dependencies/TestUsartModel_runner.d +9 -9
- data/examples/temp_sensor/build/test/dependencies/TimerConductor.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/TimerHardware.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/TimerModel.d +2 -2
- data/examples/temp_sensor/build/test/dependencies/UnityHelper.d +4 -4
- data/examples/temp_sensor/build/test/dependencies/UsartBaudRateRegisterCalculator.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/UsartConductor.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/UsartHardware.d +3 -2
- data/examples/temp_sensor/build/test/dependencies/UsartModel.d +3 -3
- data/examples/temp_sensor/build/test/dependencies/cmock.d +3 -6
- data/examples/temp_sensor/build/test/dependencies/unity.d +2 -4
- data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcHardware.c +445 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcHardware.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcModel.c +618 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcConductor/MockAdcModel.h +103 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.c +317 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcHardwareConfigurator.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.c +351 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcHardware/MockAdcTemperatureSensor.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTaskScheduler.c +458 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTaskScheduler.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureCalculator.c +159 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureCalculator.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureFilter.c +347 -0
- data/examples/temp_sensor/build/test/mocks/TestAdcModel/MockTemperatureFilter.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockAdcConductor.c +556 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockAdcConductor.h +103 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.c +223 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockIntrinsicsWrapper.h +67 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockModel.c +129 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockModel.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockTimerConductor.c +223 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockTimerConductor.h +67 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockUsartConductor.c +223 -0
- data/examples/temp_sensor/build/test/mocks/TestExecutor/MockUsartConductor.h +67 -0
- data/examples/temp_sensor/build/test/mocks/TestMain/MockExecutor.c +240 -0
- data/examples/temp_sensor/build/test/mocks/TestMain/MockExecutor.h +67 -0
- data/examples/temp_sensor/build/test/mocks/TestModel/MockTaskScheduler.c +458 -0
- data/examples/temp_sensor/build/test/mocks/TestModel/MockTaskScheduler.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestModel/MockTemperatureFilter.c +347 -0
- data/examples/temp_sensor/build/test/mocks/TestModel/MockTemperatureFilter.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerHardware.c +129 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerHardware.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.c +347 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerInterruptHandler.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerModel.c +142 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerConductor/MockTimerModel.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerHardware/MockTimerConfigurator.c +787 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerHardware/MockTimerConfigurator.h +139 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.c +458 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTaskScheduler.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.c +787 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerConfigurator.h +139 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.c +347 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerIntegrated/MockTimerInterruptHandler.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerModel/MockTaskScheduler.c +458 -0
- data/examples/temp_sensor/build/test/mocks/TestTimerModel/MockTaskScheduler.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockTaskScheduler.c +458 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockTaskScheduler.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartHardware.c +249 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartHardware.h +67 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartModel.c +368 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartConductor/MockUsartModel.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartConfigurator.c +612 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartConfigurator.h +115 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartPutChar.c +142 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartHardware/MockUsartPutChar.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.c +458 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTaskScheduler.h +91 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.c +347 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockTemperatureFilter.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.c +166 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.c +612 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartConfigurator.h +115 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.c +142 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartIntegrated/MockUsartPutChar.h +55 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockTemperatureFilter.c +347 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockTemperatureFilter.h +79 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.c +166 -0
- data/examples/temp_sensor/build/test/mocks/TestUsartModel/MockUsartBaudRateRegisterCalculator.h +55 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/AdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/MockAdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/MockAdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/TestAdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/TestAdcConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/TestAdcConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcConductor/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/AdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/MockAdcHardwareConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/MockAdcTemperatureSensor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/TestAdcHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/TestAdcHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/TestAdcHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcHardware/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/AdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/MockTemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/MockTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/TestAdcModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/TestAdcModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/TestAdcModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestAdcModel/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/Executor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/MockAdcConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/MockIntrinsicsWrapper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/MockModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/MockTimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/MockUsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/TestExecutor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/TestExecutor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/TestExecutor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestExecutor/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/Main.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/MockExecutor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/TestMain.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/TestMain.out +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/TestMain_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestMain/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/MockTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/Model.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/TestModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/TestModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/TestModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestModel/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler/TaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler/TestTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler/TestTaskScheduler.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler/TestTaskScheduler_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTaskScheduler/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/TestTemperatureCalculator_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureCalculator/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TestTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TestTemperatureFilter.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter/TestTemperatureFilter_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTemperatureFilter/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/MockTimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/MockTimerInterruptHandler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/MockTimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/TestTimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/TestTimerConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/TestTimerConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/TimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerConductor/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/MockTimerConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/TestTimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/TestTimerHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/TestTimerHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/TimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerHardware/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/MockTimerConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/MockTimerInterruptHandler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TestTimerIntegrated.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TestTimerIntegrated.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TestTimerIntegrated_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TimerConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TimerHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/TimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerIntegrated/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/TestTimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/TestTimerModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/TestTimerModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/TimerModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestTimerModel/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/UsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartBaudRateRegisterCalculator/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/MockUsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/MockUsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/TestUsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/TestUsartConductor.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/TestUsartConductor_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/UsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartConductor/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/MockUsartConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/MockUsartPutChar.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/TestUsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/TestUsartHardware.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/TestUsartHardware_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/UsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartHardware/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockTaskScheduler.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockUsartConfigurator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/MockUsartPutChar.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/TestUsartIntegrated.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/TestUsartIntegrated.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/TestUsartIntegrated_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UsartConductor.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UsartHardware.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/UsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartIntegrated/unity.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/MockTemperatureFilter.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/MockUsartBaudRateRegisterCalculator.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/TestUsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/TestUsartModel.out +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/TestUsartModel_runner.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/UnityHelper.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/UsartModel.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/cmock.o +0 -0
- data/examples/temp_sensor/build/test/out/TestUsartModel/unity.o +0 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor/AdcHardware.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor/AdcModel.h +18 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor/TestAdcConductor.c +106 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware/AdcHardwareConfigurator.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware/AdcTemperatureSensor.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware/TestAdcHardware.c +59 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TemperatureCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel/TestAdcModel.c +41 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/AdcConductor.h +18 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/IntrinsicsWrapper.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/Model.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/TestExecutor.c +45 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/TimerConductor.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor/UsartConductor.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestMain/Executor.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestMain/TestMain.c +31 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestModel/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestModel/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestModel/TestModel.c +24 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTaskScheduler/TestTaskScheduler.c +168 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureCalculator/TestTemperatureCalculator.c +52 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureFilter/TestTemperatureFilter.c +163 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TestTimerConductor.c +38 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TimerHardware.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TimerInterruptHandler.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor/TimerModel.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware/TestTimerHardware.c +35 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware/TimerConfigurator.h +24 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TestTimerIntegrated.c +54 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TimerConfigurator.h +24 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerIntegrated/TimerInterruptHandler.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel/TestTimerModel.c +21 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c +46 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/TestUsartConductor.c +47 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/UsartHardware.h +12 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor/UsartModel.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware/TestUsartHardware.c +47 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware/UsartConfigurator.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware/UsartPutChar.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/TaskScheduler.h +16 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/TestUsartIntegrated.c +57 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/UsartConfigurator.h +20 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartIntegrated/UsartPutChar.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel/TemperatureFilter.h +14 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel/TestUsartModel.c +64 -0
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel/UsartBaudRateRegisterCalculator.h +10 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor/AdcHardware.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor/AdcModel.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor/TestAdcConductor.c.yml +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware/AdcHardwareConfigurator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware/AdcTemperatureSensor.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware/TestAdcHardware.c.yml +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TaskScheduler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TemperatureCalculator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TemperatureFilter.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel/TestAdcModel.c.yml +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/AdcConductor.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/IntrinsicsWrapper.h.yml +1 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/Model.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/TestExecutor.c.yml +9 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/TimerConductor.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor/UsartConductor.h.yml +1 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestMain/Executor.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestMain/TestMain.c.yml +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestModel/TaskScheduler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestModel/TemperatureFilter.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestModel/TestModel.c.yml +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTaskScheduler/TestTaskScheduler.c.yml +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureCalculator/TestTemperatureCalculator.c.yml +3 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureFilter/TestTemperatureFilter.c.yml +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TestTimerConductor.c.yml +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TimerHardware.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TimerInterruptHandler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor/TimerModel.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware/TestTimerHardware.c.yml +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware/TimerConfigurator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TaskScheduler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TestTimerIntegrated.c.yml +9 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TimerConfigurator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerIntegrated/TimerInterruptHandler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel/TaskScheduler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel/TestTimerModel.c.yml +5 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator/TestUsartBaudRateRegisterCalculator.c.yml +4 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/TaskScheduler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/TestUsartConductor.c.yml +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/UsartHardware.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor/UsartModel.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware/TestUsartHardware.c.yml +6 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware/UsartConfigurator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware/UsartPutChar.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/TaskScheduler.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/TemperatureFilter.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/TestUsartIntegrated.c.yml +12 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/UsartBaudRateRegisterCalculator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/UsartConfigurator.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartIntegrated/UsartPutChar.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel/TemperatureFilter.h.yml +2 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel/TestUsartModel.c.yml +7 -0
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel/UsartBaudRateRegisterCalculator.h.yml +2 -0
- data/examples/temp_sensor/build/test/results/TestAdcConductor.pass +12 -11
- data/examples/temp_sensor/build/test/results/TestAdcHardware.pass +8 -7
- data/examples/temp_sensor/build/test/results/TestAdcModel.pass +7 -6
- data/examples/temp_sensor/build/test/results/TestExecutor.pass +6 -5
- data/examples/temp_sensor/build/test/results/TestMain.pass +5 -4
- data/examples/temp_sensor/build/test/results/TestModel.pass +5 -4
- data/examples/temp_sensor/build/test/results/TestTaskScheduler.pass +12 -11
- data/examples/temp_sensor/build/test/results/TestTemperatureCalculator.pass +6 -5
- data/examples/temp_sensor/build/test/results/TestTemperatureFilter.pass +8 -7
- data/examples/temp_sensor/build/test/results/TestTimerConductor.pass +6 -5
- data/examples/temp_sensor/build/test/results/TestTimerHardware.pass +5 -4
- data/examples/temp_sensor/build/test/results/TestTimerIntegrated.pass +23 -0
- data/examples/temp_sensor/build/test/results/TestTimerModel.pass +5 -4
- data/examples/temp_sensor/build/test/results/TestUsartBaudRateRegisterCalculator.pass +5 -4
- data/examples/temp_sensor/build/test/results/TestUsartConductor.pass +7 -6
- data/examples/temp_sensor/build/test/results/TestUsartHardware.pass +6 -5
- data/examples/temp_sensor/build/test/results/TestUsartIntegrated.pass +23 -0
- data/examples/temp_sensor/build/test/results/TestUsartModel.pass +8 -7
- data/examples/temp_sensor/build/test/runners/TestAdcConductor_runner.c +14 -10
- data/examples/temp_sensor/build/test/runners/TestAdcHardware_runner.c +9 -6
- data/examples/temp_sensor/build/test/runners/TestAdcModel_runner.c +8 -5
- data/examples/temp_sensor/build/test/runners/TestExecutor_runner.c +7 -4
- data/examples/temp_sensor/build/test/runners/TestMain_runner.c +6 -3
- data/examples/temp_sensor/build/test/runners/TestModel_runner.c +6 -3
- data/examples/temp_sensor/build/test/runners/TestTaskScheduler_runner.c +13 -10
- data/examples/temp_sensor/build/test/runners/TestTemperatureCalculator_runner.c +6 -4
- data/examples/temp_sensor/build/test/runners/TestTemperatureFilter_runner.c +9 -6
- data/examples/temp_sensor/build/test/runners/TestTimerConductor_runner.c +7 -4
- data/examples/temp_sensor/build/test/runners/TestTimerHardware_runner.c +6 -3
- data/examples/temp_sensor/build/test/runners/TestTimerIntegrated_runner.c +102 -0
- data/examples/temp_sensor/build/test/runners/TestTimerModel_runner.c +6 -3
- data/examples/temp_sensor/build/test/runners/TestUsartBaudRateRegisterCalculator_runner.c +6 -3
- data/examples/temp_sensor/build/test/runners/TestUsartConductor_runner.c +8 -5
- data/examples/temp_sensor/build/test/runners/TestUsartHardware_runner.c +7 -4
- data/examples/temp_sensor/build/test/runners/TestUsartIntegrated_runner.c +111 -0
- data/examples/temp_sensor/build/test/runners/TestUsartModel_runner.c +10 -6
- data/examples/temp_sensor/build/vendor/cmock/src/cmock.c +231 -0
- data/examples/temp_sensor/build/vendor/cmock/src/cmock.h +47 -0
- data/examples/temp_sensor/build/vendor/cmock/src/cmock_internals.h +91 -0
- data/examples/temp_sensor/build/vendor/cmock/src/meson.build +12 -0
- data/examples/temp_sensor/build/vendor/unity/src/meson.build +17 -0
- data/examples/temp_sensor/build/vendor/unity/src/unity.c +2501 -0
- data/examples/temp_sensor/build/vendor/unity/src/unity.h +698 -0
- data/examples/temp_sensor/build/vendor/unity/src/unity_internals.h +1183 -0
- data/examples/temp_sensor/mixin/add_gcov.yml +51 -0
- data/examples/temp_sensor/mixin/add_unity_helper.yml +26 -0
- data/examples/temp_sensor/project.yml +324 -28
- data/examples/temp_sensor/src/AdcConductor.c +7 -0
- data/examples/temp_sensor/src/AdcConductor.h +7 -0
- data/examples/temp_sensor/src/AdcHardware.c +7 -0
- data/examples/temp_sensor/src/AdcHardware.h +7 -0
- data/examples/temp_sensor/src/AdcHardwareConfigurator.c +7 -0
- data/examples/temp_sensor/src/AdcHardwareConfigurator.h +7 -0
- data/examples/temp_sensor/src/AdcModel.c +7 -0
- data/examples/temp_sensor/src/AdcModel.h +7 -0
- data/examples/temp_sensor/src/AdcTemperatureSensor.c +7 -0
- data/examples/temp_sensor/src/AdcTemperatureSensor.h +7 -0
- data/examples/temp_sensor/src/Executor.c +7 -0
- data/examples/temp_sensor/src/Executor.h +7 -0
- data/examples/temp_sensor/src/IntrinsicsWrapper.c +7 -0
- data/examples/temp_sensor/src/IntrinsicsWrapper.h +7 -0
- data/examples/temp_sensor/src/Main.c +7 -0
- data/examples/temp_sensor/src/Main.h +7 -0
- data/examples/temp_sensor/src/Model.c +7 -0
- data/examples/temp_sensor/src/Model.h +7 -0
- data/examples/temp_sensor/src/ModelConfig.h +7 -0
- data/examples/temp_sensor/src/TaskScheduler.c +7 -0
- data/examples/temp_sensor/src/TaskScheduler.h +7 -0
- data/examples/temp_sensor/src/TemperatureCalculator.c +12 -1
- data/examples/temp_sensor/src/TemperatureCalculator.h +7 -0
- data/examples/temp_sensor/src/TemperatureFilter.c +7 -0
- data/examples/temp_sensor/src/TemperatureFilter.h +7 -0
- data/examples/temp_sensor/src/TimerConductor.c +7 -0
- data/examples/temp_sensor/src/TimerConductor.h +7 -0
- data/examples/temp_sensor/src/TimerConfigurator.c +7 -0
- data/examples/temp_sensor/src/TimerConfigurator.h +7 -0
- data/examples/temp_sensor/src/TimerHardware.c +7 -0
- data/examples/temp_sensor/src/TimerHardware.h +7 -0
- data/examples/temp_sensor/src/TimerInterruptConfigurator.c +7 -0
- data/examples/temp_sensor/src/TimerInterruptConfigurator.h +7 -0
- data/examples/temp_sensor/src/TimerInterruptHandler.c +7 -0
- data/examples/temp_sensor/src/TimerInterruptHandler.h +7 -0
- data/examples/temp_sensor/src/TimerModel.c +7 -0
- data/examples/temp_sensor/src/TimerModel.h +7 -0
- data/examples/temp_sensor/src/Types.h +7 -0
- data/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c +7 -0
- data/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +7 -0
- data/examples/temp_sensor/src/UsartConductor.c +7 -0
- data/examples/temp_sensor/src/UsartConductor.h +7 -0
- data/examples/temp_sensor/src/UsartConfigurator.c +7 -0
- data/examples/temp_sensor/src/UsartConfigurator.h +7 -0
- data/examples/temp_sensor/src/UsartHardware.c +7 -0
- data/examples/temp_sensor/src/UsartHardware.h +7 -0
- data/examples/temp_sensor/src/UsartModel.c +7 -0
- data/examples/temp_sensor/src/UsartModel.h +7 -0
- data/examples/temp_sensor/src/UsartPutChar.c +7 -0
- data/examples/temp_sensor/src/UsartPutChar.h +7 -0
- data/examples/temp_sensor/src/UsartTransmitBufferStatus.c +7 -0
- data/examples/temp_sensor/src/UsartTransmitBufferStatus.h +7 -0
- data/examples/temp_sensor/test/TestExecutor.c +8 -1
- data/examples/temp_sensor/test/TestMain.c +7 -0
- data/examples/temp_sensor/test/TestModel.c +7 -0
- data/examples/temp_sensor/test/TestTaskScheduler.c +37 -30
- data/examples/temp_sensor/test/TestTemperatureCalculator.c +8 -1
- data/examples/temp_sensor/test/TestTemperatureFilter.c +7 -0
- data/examples/temp_sensor/test/TestTimerConductor.c +7 -0
- data/examples/temp_sensor/test/TestTimerHardware.c +7 -0
- data/examples/temp_sensor/test/TestTimerIntegrated.c +53 -0
- data/examples/temp_sensor/test/TestTimerModel.c +7 -0
- data/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c +12 -5
- data/examples/temp_sensor/test/TestUsartConductor.c +7 -0
- data/examples/temp_sensor/test/TestUsartHardware.c +7 -0
- data/examples/temp_sensor/test/TestUsartIntegrated.c +63 -0
- data/examples/temp_sensor/test/TestUsartModel.c +8 -1
- data/examples/temp_sensor/test/adc/TestAdcConductor.c +128 -0
- data/examples/temp_sensor/test/adc/TestAdcHardware.c +51 -0
- data/examples/temp_sensor/test/adc/TestAdcModel.c +40 -0
- data/examples/temp_sensor/test/support/UnityHelper.c +11 -4
- data/examples/temp_sensor/test/support/UnityHelper.h +11 -6
- data/lib/ceedling/application.rb +26 -0
- data/lib/ceedling/backtrace.gdb +5 -0
- data/lib/ceedling/build_batchinator.rb +113 -0
- data/lib/ceedling/cacheinator.rb +6 -0
- data/lib/ceedling/cacheinator_helper.rb +6 -0
- data/lib/ceedling/config_matchinator.rb +192 -0
- data/lib/ceedling/config_walkinator.rb +35 -0
- data/lib/ceedling/configurator.rb +543 -185
- data/lib/ceedling/configurator_builder.rb +262 -179
- data/lib/ceedling/configurator_plugins.rb +86 -32
- data/lib/ceedling/configurator_setup.rb +726 -55
- data/lib/ceedling/configurator_validator.rb +152 -142
- data/lib/ceedling/constants.rb +94 -32
- data/lib/ceedling/defaults.rb +239 -206
- data/lib/ceedling/defineinator.rb +88 -0
- data/lib/ceedling/dependinator.rb +9 -75
- data/lib/ceedling/erb_wrapper.rb +8 -1
- data/lib/ceedling/exceptions.rb +47 -0
- data/lib/ceedling/file_finder.rb +136 -102
- data/lib/ceedling/file_finder_helper.rb +81 -35
- data/lib/ceedling/file_path_collection_utils.rb +137 -0
- data/lib/ceedling/file_path_utils.rb +72 -84
- data/lib/ceedling/file_system_wrapper.rb +6 -0
- data/lib/ceedling/file_wrapper.rb +42 -3
- data/lib/ceedling/flaginator.rb +43 -52
- data/lib/ceedling/generator.rb +283 -104
- data/lib/ceedling/generator_helper.rb +62 -24
- data/lib/ceedling/generator_mocks.rb +41 -0
- data/lib/ceedling/generator_test_results.rb +199 -29
- data/lib/ceedling/generator_test_results_backtrace.rb +215 -0
- data/lib/ceedling/generator_test_results_sanity_checker.rb +13 -8
- data/lib/ceedling/generator_test_runner.rb +62 -36
- data/lib/ceedling/include_pathinator.rb +83 -0
- data/lib/ceedling/loginator.rb +314 -19
- data/lib/ceedling/makefile.rb +6 -0
- data/lib/ceedling/objects.yml +114 -81
- data/lib/ceedling/plugin.rb +14 -64
- data/lib/ceedling/plugin_manager.rb +45 -19
- data/lib/ceedling/plugin_manager_helper.rb +8 -2
- data/lib/ceedling/plugin_reportinator.rb +93 -30
- data/lib/ceedling/plugin_reportinator_helper.rb +60 -27
- data/lib/ceedling/preprocessinator.rb +213 -30
- data/lib/ceedling/preprocessinator_extractor.rb +222 -34
- data/lib/ceedling/preprocessinator_file_handler.rb +210 -15
- data/lib/ceedling/preprocessinator_includes_handler.rb +354 -161
- data/lib/ceedling/rake_utils.rb +6 -0
- data/lib/ceedling/rake_wrapper.rb +7 -0
- data/lib/ceedling/rakefile.rb +125 -65
- data/lib/ceedling/release_invoker.rb +11 -41
- data/lib/ceedling/release_invoker_helper.rb +6 -13
- data/lib/ceedling/reportinator.rb +99 -1
- data/lib/ceedling/rules_release.rake +45 -37
- data/lib/ceedling/rules_tests.rake +48 -59
- data/lib/ceedling/setupinator.rb +181 -35
- data/lib/ceedling/stream_wrapper.rb +38 -15
- data/lib/ceedling/system_utils.rb +8 -2
- data/lib/ceedling/system_wrapper.rb +83 -13
- data/lib/ceedling/task_invoker.rb +15 -67
- data/lib/ceedling/tasks_base.rake +15 -92
- data/lib/ceedling/tasks_filesystem.rake +35 -49
- data/lib/ceedling/tasks_release.rake +25 -12
- data/lib/ceedling/tasks_tests.rake +31 -22
- data/lib/ceedling/test_context_extractor.rb +440 -0
- data/lib/ceedling/test_invoker.rb +451 -111
- data/lib/ceedling/test_invoker_helper.rb +332 -17
- data/lib/ceedling/test_runner_manager.rb +47 -0
- data/lib/ceedling/tool_executor.rb +90 -86
- data/lib/ceedling/tool_executor_helper.rb +49 -106
- data/lib/ceedling/tool_validator.rb +149 -0
- data/lib/ceedling/verbosinator.rb +15 -3
- data/lib/ceedling/yaml_wrapper.rb +21 -1
- data/lib/ceedling.rb +12 -97
- data/lib/version.rb +24 -0
- data/license.txt +20 -27
- data/out.fail +3 -2
- data/plugins/beep/README.md +124 -13
- data/plugins/beep/config/defaults.yml +12 -0
- data/plugins/beep/config/defaults_beep.rb +67 -0
- data/plugins/beep/lib/beep.rb +71 -26
- data/plugins/bullseye/README.md +9 -4
- data/plugins/bullseye/bullseye.rake +43 -36
- data/plugins/bullseye/config/defaults.yml +55 -46
- data/plugins/bullseye/lib/bullseye.rb +25 -16
- data/plugins/command_hooks/README.md +230 -42
- data/plugins/command_hooks/lib/command_hooks.rb +198 -59
- data/plugins/compile_commands_json_db/README.md +40 -0
- data/plugins/compile_commands_json_db/lib/compile_commands_json_db.rb +51 -0
- data/plugins/dependencies/README.md +113 -46
- data/plugins/dependencies/Rakefile +188 -0
- data/plugins/dependencies/config/defaults.yml +74 -1
- data/plugins/dependencies/dependencies.rake +28 -18
- data/plugins/dependencies/example/boss/build/artifacts/release/DepTest +0 -0
- data/plugins/dependencies/example/boss/build/artifacts/test/test_boss.log +0 -0
- data/plugins/dependencies/example/boss/build/release/DepTest +0 -0
- data/plugins/dependencies/example/boss/build/release/cache/input.yml +371 -0
- data/plugins/dependencies/example/boss/build/release/dependencies/boss.d +3 -0
- data/plugins/dependencies/example/boss/build/release/dependencies/main.d +2 -0
- data/plugins/dependencies/example/boss/build/release/out/boss.o +0 -0
- data/plugins/dependencies/example/boss/build/release/out/main.o +0 -0
- data/plugins/dependencies/example/boss/build/test/cache/input.yml +371 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/boss.d +3 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/cmock.d +5 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/mock_libworker.d +8 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/mock_supervisor.d +8 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/test_boss.d +7 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/test_boss_runner.d +9 -0
- data/plugins/dependencies/example/boss/build/test/dependencies/unity.d +3 -0
- data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_libworker.c +386 -0
- data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_libworker.h +82 -0
- data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_supervisor.c +309 -0
- data/plugins/dependencies/example/boss/build/test/mocks/test_boss/mock_supervisor.h +72 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/boss.o +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/cmock.o +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/mock_libworker.o +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/mock_supervisor.o +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/test_boss.o +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/test_boss.out +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/test_boss_runner.o +0 -0
- data/plugins/dependencies/example/boss/build/test/out/test_boss/unity.o +0 -0
- data/plugins/dependencies/example/boss/build/test/preprocess/files/test_boss/libworker.h +22 -0
- data/plugins/dependencies/example/boss/build/test/preprocess/files/test_boss/supervisor.h +20 -0
- data/plugins/dependencies/example/boss/build/test/preprocess/files/test_boss/test_boss.c +142 -0
- data/plugins/dependencies/example/boss/build/test/preprocess/includes/test_boss/libworker.h.yml +9 -0
- data/plugins/dependencies/example/boss/build/test/preprocess/includes/test_boss/supervisor.h.yml +9 -0
- data/plugins/dependencies/example/boss/build/test/preprocess/includes/test_boss/test_boss.c.yml +15 -0
- data/plugins/dependencies/example/boss/build/test/results/test_boss.pass +27 -0
- data/plugins/dependencies/example/boss/build/test/runners/test_boss_runner.c +148 -0
- data/plugins/dependencies/example/boss/build/vendor/cmock/src/cmock.c +234 -0
- data/plugins/dependencies/example/boss/build/vendor/cmock/src/cmock.h +52 -0
- data/plugins/dependencies/example/boss/build/vendor/cmock/src/cmock_internals.h +96 -0
- data/plugins/dependencies/example/boss/build/vendor/cmock/src/meson.build +12 -0
- data/plugins/dependencies/example/boss/build/vendor/unity/src/meson.build +17 -0
- data/plugins/dependencies/example/boss/build/vendor/unity/src/unity.c +2471 -0
- data/plugins/dependencies/example/boss/build/vendor/unity/src/unity.h +702 -0
- data/plugins/dependencies/example/boss/build/vendor/unity/src/unity_internals.h +1153 -0
- data/plugins/dependencies/example/boss/project.yml +234 -0
- data/plugins/dependencies/example/boss/src/boss.c +80 -0
- data/plugins/dependencies/example/boss/src/boss.h +16 -0
- data/plugins/dependencies/example/boss/src/main.c +45 -0
- data/plugins/dependencies/example/boss/test/test_boss.c +118 -0
- data/plugins/dependencies/example/supervisor/project.yml +168 -0
- data/plugins/dependencies/example/supervisor/src/supervisor.c +45 -0
- data/plugins/dependencies/example/supervisor/src/supervisor.h +14 -0
- data/plugins/dependencies/example/supervisor/test/test_supervisor.c +58 -0
- data/plugins/dependencies/example/version.tar.gzip +0 -0
- data/plugins/dependencies/example/workerbees.zip +0 -0
- data/plugins/dependencies/lib/dependencies.rb +372 -78
- data/plugins/fff/README.md +242 -0
- data/plugins/fff/Rakefile +26 -0
- data/plugins/fff/config/fff.yml +13 -0
- data/plugins/fff/examples/fff_example/build/test/cache/input.yml +263 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/cmock.d +5 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/event_processor.d +2 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/foo.d +2 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/mock_bar.d +3 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/mock_display.d +5 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/mock_zzz.d +3 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/test_event_processor.d +5 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/test_event_processor_runner.d +8 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/test_foo.d +6 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/test_foo_runner.d +8 -0
- data/plugins/fff/examples/fff_example/build/test/dependencies/unity.d +3 -0
- data/plugins/fff/examples/fff_example/build/test/mocks/test_event_processor/mock_display.c +43 -0
- data/plugins/fff/examples/fff_example/build/test/mocks/test_event_processor/mock_display.h +35 -0
- data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_bar.c +37 -0
- data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_bar.h +31 -0
- data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_zzz.c +25 -0
- data/plugins/fff/examples/fff_example/build/test/mocks/test_foo/mock_zzz.h +25 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/cmock.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/event_processor.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/mock_display.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/test_event_processor.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/test_event_processor.out +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/test_event_processor_runner.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_event_processor/unity.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/cmock.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/foo.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/mock_bar.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/mock_zzz.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/test_foo.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/test_foo.out +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/test_foo_runner.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/out/test_foo/unity.o +0 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_event_processor/display.h +38 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_event_processor/test_event_processor.c +140 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_foo/bar.h +32 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_foo/test_foo.c +58 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/files/test_foo/zzz.h +18 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_event_processor/display.h.yml +10 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_event_processor/test_event_processor.c.yml +12 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_foo/bar.h.yml +10 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_foo/test_foo.c.yml +13 -0
- data/plugins/fff/examples/fff_example/build/test/preprocess/includes/test_foo/zzz.h.yml +9 -0
- data/plugins/fff/examples/fff_example/build/test/results/test_event_processor.pass +43 -0
- data/plugins/fff/examples/fff_example/build/test/results/test_foo.pass +31 -0
- data/plugins/fff/examples/fff_example/build/test/runners/test_event_processor_runner.c +148 -0
- data/plugins/fff/examples/fff_example/build/test/runners/test_foo_runner.c +146 -0
- data/plugins/fff/examples/fff_example/build/vendor/cmock/src/cmock.c +234 -0
- data/plugins/fff/examples/fff_example/build/vendor/cmock/src/cmock.h +52 -0
- data/plugins/fff/examples/fff_example/build/vendor/cmock/src/cmock_internals.h +96 -0
- data/plugins/fff/examples/fff_example/build/vendor/cmock/src/meson.build +12 -0
- data/plugins/fff/examples/fff_example/build/vendor/unity/src/meson.build +17 -0
- data/plugins/fff/examples/fff_example/build/vendor/unity/src/unity.c +2471 -0
- data/plugins/fff/examples/fff_example/build/vendor/unity/src/unity.h +702 -0
- data/plugins/fff/examples/fff_example/build/vendor/unity/src/unity_internals.h +1153 -0
- data/plugins/fff/examples/fff_example/project.yml +145 -0
- data/plugins/fff/examples/fff_example/src/bar.c +8 -0
- data/plugins/fff/examples/fff_example/src/bar.h +21 -0
- data/plugins/fff/examples/fff_example/src/custom_types.h +13 -0
- data/plugins/fff/examples/fff_example/src/display.c +14 -0
- data/plugins/fff/examples/fff_example/src/display.h +23 -0
- data/plugins/fff/examples/fff_example/src/event_processor.c +100 -0
- data/plugins/fff/examples/fff_example/src/event_processor.h +18 -0
- data/plugins/fff/examples/fff_example/src/foo.c +23 -0
- data/plugins/fff/examples/fff_example/src/foo.h +15 -0
- data/plugins/fff/examples/fff_example/src/subfolder/zzz.c +8 -0
- data/plugins/fff/examples/fff_example/src/subfolder/zzz.h +13 -0
- data/plugins/fff/examples/fff_example/test/test_event_processor.c +160 -0
- data/plugins/fff/examples/fff_example/test/test_foo.c +54 -0
- data/plugins/fff/lib/fff.rb +90 -0
- data/plugins/fff/lib/fff_mock_generator.rb +170 -0
- data/plugins/fff/spec/fff_mock_header_generator_spec.rb +311 -0
- data/plugins/fff/spec/fff_mock_source_generator_spec.rb +156 -0
- data/plugins/fff/spec/header_generator.rb +58 -0
- data/plugins/fff/spec/spec_helper.rb +103 -0
- data/plugins/fff/src/fff_unity_helper.h +40 -0
- data/plugins/fff/vendor/fff/LICENSE +25 -0
- data/plugins/fff/vendor/fff/Makefile +10 -0
- data/plugins/fff/vendor/fff/README.md +454 -0
- data/plugins/fff/vendor/fff/buildandtest +15 -0
- data/plugins/fff/vendor/fff/examples/Makefile +7 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/Makefile +64 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/driver.c +32 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/driver.h +21 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/driver.test.cpp +58 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/driver.test.fff.cpp +70 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/hardware_abstraction.h +25 -0
- data/plugins/fff/vendor/fff/examples/driver_testing/registers.h +23 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/DISPLAY.h +27 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/Kata.txt +25 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/Makefile +67 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/SYSTEM.h +31 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/UI.c +56 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/UI.h +22 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/UI_test_ansic.c +191 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/UI_test_cpp.cpp +144 -0
- data/plugins/fff/vendor/fff/examples/embedded_ui/test_suite_template.c +42 -0
- data/plugins/fff/vendor/fff/fakegen.rb +428 -0
- data/plugins/fff/vendor/fff/fff.h +5122 -0
- data/plugins/fff/vendor/fff/gtest/Makefile +22 -0
- data/plugins/fff/vendor/fff/gtest/gtest-all.cc +9118 -0
- data/plugins/fff/vendor/fff/gtest/gtest-main.cc +6 -0
- data/plugins/fff/vendor/fff/gtest/gtest.h +19547 -0
- data/plugins/fff/vendor/fff/test/Makefile +81 -0
- data/plugins/fff/vendor/fff/test/c_test_framework.h +25 -0
- data/plugins/fff/vendor/fff/test/fff_test_c.c +116 -0
- data/plugins/fff/vendor/fff/test/fff_test_cpp.cpp +53 -0
- data/plugins/fff/vendor/fff/test/fff_test_global_c.c +84 -0
- data/plugins/fff/vendor/fff/test/fff_test_global_cpp.cpp +31 -0
- data/plugins/fff/vendor/fff/test/global_fakes.c +21 -0
- data/plugins/fff/vendor/fff/test/global_fakes.h +47 -0
- data/plugins/fff/vendor/fff/test/test_cases.include +276 -0
- data/plugins/gcov/README.md +631 -171
- data/plugins/gcov/config/defaults.yml +27 -52
- data/plugins/gcov/config/defaults_gcov.rb +109 -0
- data/plugins/gcov/gcov.rake +43 -152
- data/plugins/gcov/lib/gcov.rb +234 -88
- data/plugins/gcov/lib/gcov_constants.rb +25 -10
- data/plugins/gcov/lib/gcovr_reportinator.rb +245 -151
- data/plugins/gcov/lib/reportgenerator_reportinator.rb +93 -68
- data/plugins/gcov/lib/reportinator_helper.rb +23 -8
- data/plugins/module_generator/README.md +123 -16
- data/plugins/module_generator/Rakefile +205 -0
- data/plugins/module_generator/assets/stubby1.h +13 -0
- data/plugins/module_generator/assets/stubby2.h +15 -0
- data/plugins/module_generator/config/module_generator.yml +12 -2
- data/plugins/module_generator/example/build/test/cache/input.yml +269 -0
- data/plugins/module_generator/example/build/vendor/cmock/src/meson.build +12 -0
- data/plugins/module_generator/example/build/vendor/unity/src/meson.build +17 -0
- data/plugins/module_generator/example/project.yml +175 -0
- data/plugins/module_generator/lib/module_generator.rb +63 -20
- data/plugins/module_generator/module_generator.rake +7 -0
- data/plugins/report_build_warnings_log/README.md +40 -0
- data/plugins/report_build_warnings_log/config/defaults.yml +12 -0
- data/plugins/report_build_warnings_log/lib/report_build_warnings_log.rb +143 -0
- data/plugins/report_tests_gtestlike_stdout/README.md +96 -0
- data/plugins/report_tests_gtestlike_stdout/assets/template.erb +83 -0
- data/plugins/report_tests_gtestlike_stdout/config/report_tests_gtestlike_stdout.yml +11 -0
- data/plugins/report_tests_gtestlike_stdout/lib/report_tests_gtestlike_stdout.rb +69 -0
- data/plugins/report_tests_ide_stdout/README.md +62 -0
- data/plugins/report_tests_ide_stdout/config/report_tests_ide_stdout.yml +11 -0
- data/plugins/report_tests_ide_stdout/lib/report_tests_ide_stdout.rb +72 -0
- data/plugins/report_tests_log_factory/README.md +446 -0
- data/plugins/report_tests_log_factory/config/defaults.yml +11 -0
- data/plugins/report_tests_log_factory/lib/cppunit_tests_reporter.rb +100 -0
- data/plugins/report_tests_log_factory/lib/html_tests_reporter.rb +181 -0
- data/plugins/report_tests_log_factory/lib/json_tests_reporter.rb +72 -0
- data/plugins/report_tests_log_factory/lib/junit_tests_reporter.rb +197 -0
- data/plugins/report_tests_log_factory/lib/report_tests_log_factory.rb +135 -0
- data/plugins/report_tests_log_factory/lib/tests_reporter.rb +70 -0
- data/plugins/report_tests_log_factory/sample_html_report.png +0 -0
- data/plugins/report_tests_pretty_stdout/README.md +54 -0
- data/plugins/report_tests_pretty_stdout/assets/template.erb +63 -0
- data/plugins/report_tests_pretty_stdout/config/report_tests_pretty_stdout.yml +11 -0
- data/plugins/report_tests_pretty_stdout/lib/report_tests_pretty_stdout.rb +73 -0
- data/plugins/report_tests_raw_output_log/README.md +50 -0
- data/plugins/report_tests_raw_output_log/lib/report_tests_raw_output_log.rb +129 -0
- data/plugins/report_tests_teamcity_stdout/README.md +94 -0
- data/plugins/report_tests_teamcity_stdout/config/defaults.yml +12 -0
- data/plugins/report_tests_teamcity_stdout/config/report_tests_teamcity_stdout.yml +11 -0
- data/plugins/report_tests_teamcity_stdout/lib/report_tests_teamcity_stdout.rb +163 -0
- data/spec/config_walkinator_spec.rb +62 -0
- data/spec/configurator_builder_spec.rb +9 -0
- data/spec/configurator_helper_spec.rb +7 -0
- data/spec/configurator_spec.rb +8 -0
- data/spec/file_finder_helper_spec.rb +30 -10
- data/spec/gcov/gcov_deployment_spec.rb +82 -20
- data/spec/gcov/gcov_test_cases_spec.rb +211 -64
- data/spec/generator_test_results_sanity_checker_spec.rb +26 -10
- data/spec/generator_test_results_spec.rb +44 -20
- data/spec/manual/stress_test.rb +31 -0
- data/spec/preprocessinator_extractor_spec.rb +303 -54
- data/spec/preprocessinator_includes_handler_spec.rb +269 -233
- data/spec/reportinator_spec.rb +7 -0
- data/spec/spec_helper.rb +8 -3
- data/spec/spec_system_helper.rb +522 -184
- data/spec/support/other_target.yml +7 -0
- data/spec/support/target.yml +7 -0
- data/spec/support/test_example.fail +3 -2
- data/spec/support/test_example.pass +3 -2
- data/spec/support/test_example_empty.pass +3 -2
- data/spec/support/test_example_ignore.pass +3 -2
- data/spec/support/test_example_mangled.pass +3 -2
- data/spec/support/test_example_with_time.pass +3 -2
- data/spec/system/deployment_as_gem_spec.rb +76 -0
- data/spec/system/deployment_as_vendor_spec.rb +123 -0
- data/spec/system/example_temp_sensor_spec.rb +264 -0
- data/spec/system/upgrade_as_vendor_spec.rb +68 -0
- data/spec/system_utils_spec.rb +15 -6
- data/spec/test_context_extractor_spec.rb +358 -0
- data/spec/tool_executor_helper_spec.rb +116 -207
- data/spec/uncategorized_specs_spec.rb +15 -0
- data/vendor/c_exception/README.md +1 -12
- data/vendor/c_exception/docs/CException.md +4 -47
- data/vendor/c_exception/docs/CODE_OF_CONDUCT.md +138 -0
- data/vendor/c_exception/docs/CONTRIBUTING.md +238 -0
- data/vendor/c_exception/lib/CException.c +13 -0
- data/vendor/c_exception/lib/CException.h +8 -1
- data/vendor/c_exception/license.txt +22 -0
- data/vendor/c_exception/project.yml +232 -6
- data/vendor/c_exception/test/TestException.c +10 -3
- data/vendor/c_exception/test/support/CExceptionConfig.h +7 -0
- data/vendor/cmock/Gemfile +0 -7
- data/vendor/cmock/LICENSE.txt +3 -1
- data/vendor/cmock/README.md +27 -11
- data/vendor/cmock/cmock.gemspec +34 -0
- data/vendor/cmock/config/production_environment.rb +7 -6
- data/vendor/cmock/config/test_environment.rb +7 -6
- data/vendor/cmock/docs/CMockChangeLog.md +166 -0
- data/vendor/cmock/docs/CMockKnownIssues.md +13 -0
- data/vendor/cmock/docs/CMock_ArgumentValidation.md +274 -0
- data/vendor/cmock/docs/CMock_Summary.md +43 -8
- data/vendor/cmock/docs/CODE_OF_CONDUCT.md +138 -0
- data/vendor/cmock/docs/CONTRIBUTING.md +238 -0
- data/vendor/cmock/examples/make_example/Makefile +1 -1
- data/vendor/cmock/examples/make_example/src/foo.c +7 -0
- data/vendor/cmock/examples/make_example/src/foo.h +7 -0
- data/vendor/cmock/examples/make_example/src/main.c +7 -0
- data/vendor/cmock/examples/make_example/test/test_foo.c +8 -1
- data/vendor/cmock/examples/make_example/test/test_main.c +7 -0
- data/vendor/cmock/examples/temp_sensor/rakefile.rb +8 -1
- data/vendor/cmock/examples/temp_sensor/rakefile_helper.rb +33 -21
- data/vendor/cmock/examples/temp_sensor/src/AT91SAM7X256.h +20 -12
- data/vendor/cmock/examples/temp_sensor/src/AdcConductor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcConductor.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcHardware.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcHardware.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcHardwareConfigurator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcHardwareConfigurator.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcModel.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcTemperatureSensor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/AdcTemperatureSensor.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Executor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Executor.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/IntrinsicsWrapper.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/IntrinsicsWrapper.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Main.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Main.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Model.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Model.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/ModelConfig.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TaskScheduler.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TaskScheduler.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TemperatureCalculator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TemperatureCalculator.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TemperatureFilter.c +15 -5
- data/vendor/cmock/examples/temp_sensor/src/TemperatureFilter.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerConductor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerConductor.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerConfigurator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerConfigurator.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerHardware.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerHardware.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerInterruptConfigurator.c +8 -1
- data/vendor/cmock/examples/temp_sensor/src/TimerInterruptConfigurator.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerInterruptHandler.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerInterruptHandler.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/TimerModel.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/Types.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartBaudRateRegisterCalculator.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartConductor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartConductor.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartConfigurator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartConfigurator.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartHardware.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartHardware.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartModel.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartPutChar.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartPutChar.h +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartTransmitBufferStatus.c +7 -0
- data/vendor/cmock/examples/temp_sensor/src/UsartTransmitBufferStatus.h +7 -0
- data/vendor/cmock/examples/temp_sensor/targets/gcc.yml +97 -0
- data/vendor/cmock/examples/temp_sensor/targets/iar_v4.yml +143 -0
- data/vendor/cmock/examples/temp_sensor/targets/iar_v5.yml +132 -0
- data/vendor/cmock/examples/temp_sensor/test/TestAdcConductor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestAdcHardware.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestAdcHardwareConfigurator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestAdcModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestAdcTemperatureSensor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestExecutor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestMain.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTaskScheduler.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTemperatureCalculator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTemperatureFilter.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTimerConductor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTimerConfigurator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTimerHardware.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTimerInterruptConfigurator.c +9 -2
- data/vendor/cmock/examples/temp_sensor/test/TestTimerInterruptHandler.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestTimerModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartBaudRateRegisterCalculator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartConductor.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartConfigurator.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartHardware.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartModel.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartPutChar.c +7 -0
- data/vendor/cmock/examples/temp_sensor/test/TestUsartTransmitBufferStatus.c +7 -0
- data/vendor/cmock/lib/cmock.rb +27 -11
- data/vendor/cmock/lib/cmock_config.rb +22 -12
- data/vendor/cmock/lib/cmock_file_writer.rb +12 -12
- data/vendor/cmock/lib/cmock_generator.rb +111 -83
- data/vendor/cmock/lib/cmock_generator_plugin_array.rb +15 -10
- data/vendor/cmock/lib/cmock_generator_plugin_callback.rb +7 -7
- data/vendor/cmock/lib/cmock_generator_plugin_cexception.rb +7 -7
- data/vendor/cmock/lib/cmock_generator_plugin_expect.rb +14 -9
- data/vendor/cmock/lib/cmock_generator_plugin_expect_any_args.rb +11 -9
- data/vendor/cmock/lib/cmock_generator_plugin_ignore.rb +10 -8
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_arg.rb +7 -0
- data/vendor/cmock/lib/cmock_generator_plugin_ignore_stateless.rb +10 -8
- data/vendor/cmock/lib/cmock_generator_plugin_return_thru_ptr.rb +31 -8
- data/vendor/cmock/lib/cmock_generator_utils.rb +11 -10
- data/vendor/cmock/lib/cmock_header_parser.rb +70 -62
- data/vendor/cmock/lib/cmock_plugin_manager.rb +8 -7
- data/vendor/cmock/lib/cmock_unityhelper_parser.rb +13 -8
- data/vendor/cmock/lib/cmock_version.rb +29 -0
- data/vendor/cmock/scripts/create_makefile.rb +13 -6
- data/vendor/cmock/scripts/create_mock.rb +7 -0
- data/vendor/cmock/scripts/create_runner.rb +7 -0
- data/vendor/cmock/scripts/test_summary.rb +7 -0
- data/vendor/cmock/src/cmock.c +24 -2
- data/vendor/cmock/src/cmock.h +9 -2
- data/vendor/cmock/src/cmock_internals.h +7 -0
- data/vendor/cmock/test/c/TestCMockC.c +8 -1
- data/vendor/cmock/test/c/TestCMockC.yml +7 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.c +7 -0
- data/vendor/cmock/test/c/TestCMockCDynamic.yml +7 -0
- data/vendor/cmock/test/c/TestCMockCDynamic_Runner.c +7 -0
- data/vendor/cmock/test/c/TestCMockC_Runner.c +7 -0
- data/vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X-EK.h +7 -0
- data/vendor/cmock/test/iar/iar_v4/incIAR/AT91SAM7X256_inc.h +7 -0
- data/vendor/cmock/test/iar/iar_v4/incIAR/ioat91sam7x256.h +7 -0
- data/vendor/cmock/test/iar/iar_v4/srcIAR/Cstartup_SAM7.c +7 -0
- data/vendor/cmock/test/iar/iar_v5/incIAR/AT91SAM7X-EK.h +7 -0
- data/vendor/cmock/test/iar/iar_v5/incIAR/AT91SAM7X256_inc.h +7 -0
- data/vendor/cmock/test/iar/iar_v5/incIAR/project.h +7 -0
- data/vendor/cmock/test/iar/iar_v5/srcIAR/Cstartup_SAM7.c +7 -0
- data/vendor/cmock/test/rakefile +6 -3
- data/vendor/cmock/test/rakefile_helper.rb +25 -11
- data/vendor/cmock/test/system/systest_generator.rb +6 -5
- data/vendor/cmock/test/system/test_compilation/callingconv.h +7 -0
- data/vendor/cmock/test/system/test_compilation/config.yml +7 -0
- data/vendor/cmock/test/system/test_compilation/const.h +7 -0
- data/vendor/cmock/test/system/test_compilation/inline.h +7 -0
- data/vendor/cmock/test/system/test_compilation/osek.h +8 -1
- data/vendor/cmock/test/system/test_compilation/parsing.h +12 -2
- data/vendor/cmock/test/system/test_interactions/all_plugins_but_other_limits.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/all_plugins_coexist.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/array_and_pointer_handling.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/basic_expect_and_return.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/const_primitives_handling.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/doesnt_leave_details_behind.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/enforce_strict_ordering.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_return_custom_types.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_return_treat_as.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/expect_and_throw.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/expect_any_args.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/fancy_pointer_handling.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/function_pointer_handling.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/ignore_and_return.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/ignore_and_return_stateless.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/ignore_strict_mock_calling.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/newer_standards_stuff1.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_1.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/nonstandard_parsed_stuff_2.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/out_of_memory.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/parsing_challenges.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/return_thru_ptr_and_expect_any_args.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/return_thru_ptr_ignore_arg.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/skeleton.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/skeleton_update.yml +8 -1
- data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/struct_union_enum_expect_and_return_with_plugins.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/stubs_with_callbacks.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/unity_64bit_support.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/unity_ignores.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/unity_void_pointer_compare.yml +7 -0
- data/vendor/cmock/test/system/test_interactions/wrong_expect_and_return.yml +149 -0
- data/vendor/cmock/test/targets/clang_strict.yml +7 -0
- data/vendor/cmock/test/targets/gcc.yml +7 -0
- data/vendor/cmock/test/targets/gcc_64.yml +7 -0
- data/vendor/cmock/test/targets/gcc_tiny.yml +7 -0
- data/vendor/cmock/test/targets/iar_arm_v4.yml +7 -0
- data/vendor/cmock/test/targets/iar_arm_v5.yml +7 -0
- data/vendor/cmock/test/test_helper.rb +6 -5
- data/vendor/cmock/test/unit/cmock_config_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_config_test.yml +7 -0
- data/vendor/cmock/test/unit/cmock_file_writer_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_generator_main_test.rb +75 -58
- data/vendor/cmock/test/unit/cmock_generator_plugin_array_test.rb +12 -8
- data/vendor/cmock/test/unit/cmock_generator_plugin_callback_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_generator_plugin_cexception_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_a_test.rb +12 -8
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_any_args_test.rb +11 -7
- data/vendor/cmock/test/unit/cmock_generator_plugin_expect_b_test.rb +12 -8
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_arg_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_stateless_test.rb +13 -8
- data/vendor/cmock/test/unit/cmock_generator_plugin_ignore_test.rb +13 -8
- data/vendor/cmock/test/unit/cmock_generator_plugin_return_thru_ptr_test.rb +87 -14
- data/vendor/cmock/test/unit/cmock_generator_utils_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_header_parser_test.rb +94 -51
- data/vendor/cmock/test/unit/cmock_plugin_manager_test.rb +6 -5
- data/vendor/cmock/test/unit/cmock_unityhelper_parser_test.rb +6 -5
- data/vendor/cmock/vendor/c_exception/README.md +1 -12
- data/vendor/cmock/vendor/c_exception/docs/CException.md +4 -47
- data/vendor/cmock/vendor/c_exception/docs/CODE_OF_CONDUCT.md +138 -0
- data/vendor/cmock/vendor/c_exception/docs/CONTRIBUTING.md +238 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.c +13 -0
- data/vendor/cmock/vendor/c_exception/lib/CException.h +8 -1
- data/vendor/cmock/vendor/c_exception/license.txt +22 -0
- data/vendor/cmock/vendor/c_exception/project.yml +232 -6
- data/vendor/cmock/vendor/c_exception/test/TestException.c +10 -3
- data/vendor/cmock/vendor/c_exception/test/support/CExceptionConfig.h +7 -0
- data/vendor/cmock/vendor/unity/CMakeLists.txt +46 -33
- data/vendor/cmock/vendor/unity/LICENSE.txt +1 -1
- data/vendor/cmock/vendor/unity/README.md +106 -72
- data/vendor/cmock/vendor/unity/auto/__init__.py +7 -0
- data/vendor/cmock/vendor/unity/auto/colour_prompt.rb +6 -5
- data/vendor/cmock/vendor/unity/auto/colour_reporter.rb +7 -6
- data/vendor/cmock/vendor/unity/auto/extract_version.py +22 -0
- data/vendor/cmock/vendor/unity/auto/generate_config.yml +7 -0
- data/vendor/cmock/vendor/unity/auto/generate_module.rb +32 -27
- data/vendor/cmock/vendor/unity/auto/generate_test_runner.rb +71 -35
- data/vendor/cmock/vendor/unity/auto/parse_output.rb +90 -22
- data/vendor/cmock/vendor/unity/auto/run_test.erb +2 -2
- data/vendor/cmock/vendor/unity/auto/stylize_as_junit.py +161 -0
- data/vendor/cmock/vendor/unity/auto/stylize_as_junit.rb +8 -6
- data/vendor/cmock/vendor/unity/auto/test_file_filter.rb +11 -8
- data/vendor/cmock/vendor/unity/auto/type_sanitizer.rb +8 -1
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.py +7 -6
- data/vendor/cmock/vendor/unity/auto/unity_test_summary.rb +13 -8
- data/vendor/cmock/vendor/unity/auto/yaml_helper.rb +23 -0
- data/vendor/cmock/vendor/unity/docs/CODE_OF_CONDUCT.md +138 -0
- data/vendor/cmock/vendor/unity/docs/CONTRIBUTING.md +238 -0
- data/vendor/cmock/vendor/unity/docs/MesonGeneratorRunner.md +18 -0
- data/vendor/cmock/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +107 -126
- data/vendor/cmock/vendor/unity/docs/UnityAssertionsReference.md +273 -244
- data/vendor/cmock/vendor/unity/docs/UnityChangeLog.md +110 -0
- data/vendor/cmock/vendor/unity/docs/UnityConfigurationGuide.md +385 -294
- data/vendor/cmock/vendor/unity/docs/UnityGettingStartedGuide.md +112 -121
- data/vendor/cmock/vendor/unity/docs/UnityHelperScriptsGuide.md +366 -111
- data/vendor/cmock/vendor/unity/docs/UnityKnownIssues.md +13 -0
- data/vendor/cmock/vendor/unity/examples/example_1/makefile +6 -5
- data/vendor/cmock/vendor/unity/examples/example_1/meson.build +48 -0
- data/vendor/cmock/vendor/unity/examples/example_1/readme.txt +8 -1
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_1/src/ProductionCode2.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_1/subprojects/unity.wrap +3 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_1/test/TestProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_2/makefile +6 -5
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_2/src/ProductionCode2.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode.c +7 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/TestProductionCode2.c +7 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +7 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +7 -0
- data/vendor/cmock/vendor/unity/examples/example_2/test/test_runners/all_tests.c +7 -0
- data/vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.c +7 -0
- data/vendor/cmock/vendor/unity/examples/example_3/helper/UnityHelper.h +7 -0
- data/vendor/cmock/vendor/unity/examples/example_3/rakefile.rb +7 -0
- data/vendor/cmock/vendor/unity/examples/example_3/rakefile_helper.rb +26 -21
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_3/src/ProductionCode2.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_3/target_gcc_32.yml +7 -0
- data/vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_3/test/TestProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/meson.build +2 -2
- data/vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/src/ProductionCode2.h +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/subprojects/unity.wrap +3 -1
- data/vendor/cmock/vendor/unity/examples/example_4/test/TestProductionCode.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/test/TestProductionCode2.c +6 -0
- data/vendor/cmock/vendor/unity/examples/example_4/test/test_runners/meson.build +3 -3
- data/vendor/cmock/vendor/unity/examples/unity_config.h +8 -1
- data/vendor/cmock/vendor/unity/extras/bdd/readme.md +40 -0
- data/vendor/cmock/vendor/unity/extras/bdd/src/unity_bdd.h +44 -0
- data/vendor/cmock/vendor/unity/extras/bdd/test/meson.build +9 -0
- data/vendor/cmock/vendor/unity/extras/bdd/test/test_bdd.c +129 -0
- data/vendor/cmock/vendor/unity/extras/fixture/readme.md +16 -19
- data/vendor/cmock/vendor/unity/extras/fixture/src/meson.build +10 -0
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.c +6 -6
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture.h +18 -7
- data/vendor/cmock/vendor/unity/extras/fixture/src/unity_fixture_internals.h +6 -6
- data/vendor/cmock/vendor/unity/extras/fixture/test/main/AllTests.c +6 -6
- data/vendor/cmock/vendor/unity/extras/fixture/test/template_fixture_tests.c +6 -6
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_Test.c +6 -6
- data/vendor/cmock/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +6 -6
- data/vendor/cmock/vendor/unity/extras/memory/readme.md +27 -34
- data/vendor/cmock/vendor/unity/extras/memory/src/meson.build +9 -0
- data/vendor/cmock/vendor/unity/extras/memory/src/unity_memory.c +6 -5
- data/vendor/cmock/vendor/unity/extras/memory/src/unity_memory.h +6 -5
- data/vendor/cmock/vendor/unity/extras/memory/test/Makefile +7 -0
- data/vendor/cmock/vendor/unity/extras/memory/test/unity_memory_Test.c +6 -5
- data/vendor/cmock/vendor/unity/extras/memory/test/unity_memory_TestRunner.c +6 -5
- data/vendor/cmock/vendor/unity/extras/memory/test/unity_output_Spy.c +6 -5
- data/vendor/cmock/vendor/unity/extras/memory/test/unity_output_Spy.h +6 -5
- data/vendor/cmock/vendor/unity/library.json +25 -0
- data/vendor/cmock/vendor/unity/meson.build +71 -5
- data/vendor/cmock/vendor/unity/meson_options.txt +3 -0
- data/vendor/cmock/vendor/unity/platformio-build.py +24 -0
- data/vendor/cmock/vendor/unity/src/meson.build +11 -5
- data/vendor/cmock/vendor/unity/src/unity.c +535 -144
- data/vendor/cmock/vendor/unity/src/unity.h +50 -13
- data/vendor/cmock/vendor/unity/src/unity_internals.h +199 -55
- data/vendor/cmock/vendor/unity/test/Makefile +7 -0
- data/vendor/cmock/vendor/unity/test/rakefile +6 -5
- data/vendor/cmock/vendor/unity/test/rakefile_helper.rb +9 -8
- data/vendor/cmock/vendor/unity/test/spec/generate_module_existing_file_spec.rb +6 -0
- data/vendor/cmock/vendor/unity/test/targets/ansi.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/clang_file.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/clang_strict.yml +8 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_32.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_64.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_limits.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_auto_stdint.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/gcc_manual_math.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/hitech_picc18.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v4.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_arm_v5_3.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_cortexm3_v5.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_msp430.yml +7 -0
- data/vendor/cmock/vendor/unity/test/targets/iar_sh2a_v6.yml +7 -0
- data/vendor/cmock/vendor/unity/test/testdata/CException.h +7 -0
- data/vendor/cmock/vendor/unity/test/testdata/Defs.h +8 -0
- data/vendor/cmock/vendor/unity/test/testdata/cmock.h +7 -0
- data/vendor/cmock/vendor/unity/test/testdata/mockMock.h +7 -0
- data/vendor/cmock/vendor/unity/test/testdata/testRunnerGenerator.c +18 -3
- data/vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +8 -5
- data/vendor/cmock/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +7 -4
- data/vendor/cmock/vendor/unity/test/tests/self_assessment_utils.h +12 -5
- data/vendor/cmock/vendor/unity/test/tests/test_generate_test_runner.rb +107 -26
- data/vendor/cmock/vendor/unity/test/tests/test_unity_arrays.c +73 -6
- data/vendor/cmock/vendor/unity/test/tests/test_unity_core.c +12 -8
- data/vendor/cmock/vendor/unity/test/tests/test_unity_doubles.c +517 -5
- data/vendor/cmock/vendor/unity/test/tests/test_unity_floats.c +516 -5
- data/vendor/cmock/vendor/unity/test/tests/test_unity_integers.c +21 -5
- data/vendor/cmock/vendor/unity/test/tests/test_unity_integers_64.c +16 -6
- data/vendor/cmock/vendor/unity/test/tests/test_unity_memory.c +6 -5
- data/vendor/cmock/vendor/unity/test/tests/test_unity_parameterized.c +146 -8
- data/vendor/cmock/vendor/unity/test/tests/test_unity_parameterizedDemo.c +28 -0
- data/vendor/cmock/vendor/unity/test/tests/test_unity_strings.c +6 -5
- data/vendor/cmock/vendor/unity/test/tests/types_for_test.h +21 -0
- data/vendor/diy/LICENSE.txt +7 -0
- data/vendor/diy/README.rdoc +21 -39
- data/vendor/diy/lib/diy/factory.rb +8 -0
- data/vendor/diy/lib/diy.rb +8 -0
- data/vendor/diy/sample_code/car.rb +8 -0
- data/vendor/diy/sample_code/chassis.rb +8 -0
- data/vendor/diy/sample_code/diy_example.rb +8 -0
- data/vendor/diy/sample_code/engine.rb +8 -0
- data/vendor/diy/sample_code/objects.yml +8 -0
- data/vendor/diy/test/constructor.rb +8 -0
- data/vendor/diy/test/diy_test.rb +8 -0
- data/vendor/diy/test/factory_test.rb +8 -0
- data/vendor/diy/test/files/broken_construction.yml +8 -0
- data/vendor/diy/test/files/cat/cat.rb +8 -0
- data/vendor/diy/test/files/cat/extra_conflict.yml +8 -0
- data/vendor/diy/test/files/cat/heritage.rb +8 -0
- data/vendor/diy/test/files/cat/needs_input.yml +8 -0
- data/vendor/diy/test/files/cat/the_cat_lineage.rb +8 -0
- data/vendor/diy/test/files/dog/dog_model.rb +8 -0
- data/vendor/diy/test/files/dog/dog_presenter.rb +8 -0
- data/vendor/diy/test/files/dog/dog_view.rb +8 -0
- data/vendor/diy/test/files/dog/file_resolver.rb +8 -0
- data/vendor/diy/test/files/dog/other_thing.rb +8 -0
- data/vendor/diy/test/files/dog/simple.yml +8 -0
- data/vendor/diy/test/files/donkey/foo/bar/qux.rb +8 -0
- data/vendor/diy/test/files/donkey/foo.rb +8 -0
- data/vendor/diy/test/files/factory/beef.rb +8 -0
- data/vendor/diy/test/files/factory/dog.rb +8 -0
- data/vendor/diy/test/files/factory/factory.yml +8 -0
- data/vendor/diy/test/files/factory/farm/llama.rb +8 -0
- data/vendor/diy/test/files/factory/farm/pork.rb +8 -0
- data/vendor/diy/test/files/factory/kitten.rb +8 -0
- data/vendor/diy/test/files/fud/objects.yml +8 -0
- data/vendor/diy/test/files/fud/toy.rb +8 -0
- data/vendor/diy/test/files/functions/attached_things_builder.rb +8 -0
- data/vendor/diy/test/files/functions/invalid_method.yml +8 -0
- data/vendor/diy/test/files/functions/method_extractor.rb +8 -0
- data/vendor/diy/test/files/functions/nonsingleton_objects.yml +8 -0
- data/vendor/diy/test/files/functions/objects.yml +8 -0
- data/vendor/diy/test/files/functions/thing.rb +8 -0
- data/vendor/diy/test/files/functions/thing_builder.rb +8 -0
- data/vendor/diy/test/files/functions/things_builder.rb +8 -0
- data/vendor/diy/test/files/gnu/objects.yml +8 -0
- data/vendor/diy/test/files/gnu/thinger.rb +8 -0
- data/vendor/diy/test/files/goat/base.rb +8 -0
- data/vendor/diy/test/files/goat/can.rb +8 -0
- data/vendor/diy/test/files/goat/goat.rb +8 -0
- data/vendor/diy/test/files/goat/objects.yml +8 -0
- data/vendor/diy/test/files/goat/paper.rb +8 -0
- data/vendor/diy/test/files/goat/plane.rb +8 -0
- data/vendor/diy/test/files/goat/shirt.rb +8 -0
- data/vendor/diy/test/files/goat/wings.rb +8 -0
- data/vendor/diy/test/files/horse/holder_thing.rb +8 -0
- data/vendor/diy/test/files/horse/objects.yml +8 -0
- data/vendor/diy/test/files/namespace/animal/bird.rb +8 -0
- data/vendor/diy/test/files/namespace/animal/cat.rb +8 -0
- data/vendor/diy/test/files/namespace/animal/reptile/hardshell/turtle.rb +8 -0
- data/vendor/diy/test/files/namespace/animal/reptile/lizard.rb +8 -0
- data/vendor/diy/test/files/namespace/bad_module_specified.yml +8 -0
- data/vendor/diy/test/files/namespace/class_name_combine.yml +8 -0
- data/vendor/diy/test/files/namespace/no_module_specified.yml +8 -0
- data/vendor/diy/test/files/namespace/objects.yml +8 -0
- data/vendor/diy/test/files/namespace/road.rb +8 -0
- data/vendor/diy/test/files/namespace/sky.rb +8 -0
- data/vendor/diy/test/files/namespace/subcontext.yml +8 -0
- data/vendor/diy/test/files/non_singleton/air.rb +8 -0
- data/vendor/diy/test/files/non_singleton/fat_cat.rb +8 -0
- data/vendor/diy/test/files/non_singleton/objects.yml +8 -0
- data/vendor/diy/test/files/non_singleton/pig.rb +8 -0
- data/vendor/diy/test/files/non_singleton/thread_spinner.rb +8 -0
- data/vendor/diy/test/files/non_singleton/tick.rb +8 -0
- data/vendor/diy/test/files/non_singleton/yard.rb +8 -0
- data/vendor/diy/test/files/yak/core_model.rb +8 -0
- data/vendor/diy/test/files/yak/core_presenter.rb +8 -0
- data/vendor/diy/test/files/yak/core_view.rb +8 -0
- data/vendor/diy/test/files/yak/data_source.rb +8 -0
- data/vendor/diy/test/files/yak/fringe_model.rb +8 -0
- data/vendor/diy/test/files/yak/fringe_presenter.rb +8 -0
- data/vendor/diy/test/files/yak/fringe_view.rb +8 -0
- data/vendor/diy/test/files/yak/giant_squid.rb +8 -0
- data/vendor/diy/test/files/yak/krill.rb +8 -0
- data/vendor/diy/test/files/yak/my_objects.yml +8 -0
- data/vendor/diy/test/files/yak/sub_sub_context_test.yml +8 -0
- data/vendor/diy/test/test_helper.rb +8 -0
- data/vendor/unity/CMakeLists.txt +46 -33
- data/vendor/unity/LICENSE.txt +1 -1
- data/vendor/unity/README.md +106 -72
- data/vendor/unity/auto/__init__.py +7 -0
- data/vendor/unity/auto/colour_prompt.rb +6 -5
- data/vendor/unity/auto/colour_reporter.rb +7 -6
- data/vendor/unity/auto/extract_version.py +22 -0
- data/vendor/unity/auto/generate_config.yml +7 -0
- data/vendor/unity/auto/generate_module.rb +32 -27
- data/vendor/unity/auto/generate_test_runner.rb +71 -35
- data/vendor/unity/auto/parse_output.rb +90 -22
- data/vendor/unity/auto/run_test.erb +2 -2
- data/vendor/unity/auto/stylize_as_junit.py +161 -0
- data/vendor/unity/auto/stylize_as_junit.rb +8 -6
- data/vendor/unity/auto/test_file_filter.rb +11 -8
- data/vendor/unity/auto/type_sanitizer.rb +8 -1
- data/vendor/unity/auto/unity_test_summary.py +7 -6
- data/vendor/unity/auto/unity_test_summary.rb +13 -8
- data/vendor/unity/auto/yaml_helper.rb +23 -0
- data/vendor/unity/docs/CODE_OF_CONDUCT.md +138 -0
- data/vendor/unity/docs/CONTRIBUTING.md +238 -0
- data/vendor/unity/docs/MesonGeneratorRunner.md +18 -0
- data/vendor/unity/docs/ThrowTheSwitchCodingStandard.md +107 -126
- data/vendor/unity/docs/UnityAssertionsReference.md +273 -244
- data/vendor/unity/docs/UnityChangeLog.md +110 -0
- data/vendor/unity/docs/UnityConfigurationGuide.md +385 -294
- data/vendor/unity/docs/UnityGettingStartedGuide.md +112 -121
- data/vendor/unity/docs/UnityHelperScriptsGuide.md +366 -111
- data/vendor/unity/docs/UnityKnownIssues.md +13 -0
- data/vendor/unity/examples/example_1/makefile +6 -5
- data/vendor/unity/examples/example_1/meson.build +48 -0
- data/vendor/unity/examples/example_1/readme.txt +8 -1
- data/vendor/unity/examples/example_1/src/ProductionCode.c +6 -0
- data/vendor/unity/examples/example_1/src/ProductionCode.h +6 -0
- data/vendor/unity/examples/example_1/src/ProductionCode2.c +6 -0
- data/vendor/unity/examples/example_1/src/ProductionCode2.h +6 -0
- data/vendor/unity/examples/example_1/subprojects/unity.wrap +3 -0
- data/vendor/unity/examples/example_1/test/TestProductionCode.c +6 -0
- data/vendor/unity/examples/example_1/test/TestProductionCode2.c +6 -0
- data/vendor/unity/examples/example_2/makefile +6 -5
- data/vendor/unity/examples/example_2/src/ProductionCode.c +6 -0
- data/vendor/unity/examples/example_2/src/ProductionCode.h +6 -0
- data/vendor/unity/examples/example_2/src/ProductionCode2.c +6 -0
- data/vendor/unity/examples/example_2/src/ProductionCode2.h +6 -0
- data/vendor/unity/examples/example_2/test/TestProductionCode.c +7 -0
- data/vendor/unity/examples/example_2/test/TestProductionCode2.c +7 -0
- data/vendor/unity/examples/example_2/test/test_runners/TestProductionCode2_Runner.c +7 -0
- data/vendor/unity/examples/example_2/test/test_runners/TestProductionCode_Runner.c +7 -0
- data/vendor/unity/examples/example_2/test/test_runners/all_tests.c +7 -0
- data/vendor/unity/examples/example_3/helper/UnityHelper.c +7 -0
- data/vendor/unity/examples/example_3/helper/UnityHelper.h +7 -0
- data/vendor/unity/examples/example_3/rakefile.rb +7 -0
- data/vendor/unity/examples/example_3/rakefile_helper.rb +26 -21
- data/vendor/unity/examples/example_3/src/ProductionCode.c +6 -0
- data/vendor/unity/examples/example_3/src/ProductionCode.h +6 -0
- data/vendor/unity/examples/example_3/src/ProductionCode2.c +6 -0
- data/vendor/unity/examples/example_3/src/ProductionCode2.h +6 -0
- data/vendor/unity/examples/example_3/target_gcc_32.yml +7 -0
- data/vendor/unity/examples/example_3/test/TestProductionCode.c +6 -0
- data/vendor/unity/examples/example_3/test/TestProductionCode2.c +6 -0
- data/vendor/unity/examples/example_4/meson.build +2 -2
- data/vendor/unity/examples/example_4/src/ProductionCode.c +6 -0
- data/vendor/unity/examples/example_4/src/ProductionCode.h +6 -0
- data/vendor/unity/examples/example_4/src/ProductionCode2.c +6 -0
- data/vendor/unity/examples/example_4/src/ProductionCode2.h +6 -0
- data/vendor/unity/examples/example_4/subprojects/unity.wrap +3 -1
- data/vendor/unity/examples/example_4/test/TestProductionCode.c +6 -0
- data/vendor/unity/examples/example_4/test/TestProductionCode2.c +6 -0
- data/vendor/unity/examples/example_4/test/test_runners/meson.build +3 -3
- data/vendor/unity/examples/unity_config.h +8 -1
- data/vendor/unity/extras/bdd/readme.md +40 -0
- data/vendor/unity/extras/bdd/src/unity_bdd.h +44 -0
- data/vendor/unity/extras/bdd/test/meson.build +9 -0
- data/vendor/unity/extras/bdd/test/test_bdd.c +129 -0
- data/vendor/unity/extras/fixture/readme.md +16 -19
- data/vendor/unity/extras/fixture/src/meson.build +10 -0
- data/vendor/unity/extras/fixture/src/unity_fixture.c +6 -6
- data/vendor/unity/extras/fixture/src/unity_fixture.h +18 -7
- data/vendor/unity/extras/fixture/src/unity_fixture_internals.h +6 -6
- data/vendor/unity/extras/fixture/test/main/AllTests.c +6 -6
- data/vendor/unity/extras/fixture/test/template_fixture_tests.c +6 -6
- data/vendor/unity/extras/fixture/test/unity_fixture_Test.c +6 -6
- data/vendor/unity/extras/fixture/test/unity_fixture_TestRunner.c +6 -6
- data/vendor/unity/extras/memory/readme.md +27 -34
- data/vendor/unity/extras/memory/src/meson.build +9 -0
- data/vendor/unity/extras/memory/src/unity_memory.c +6 -5
- data/vendor/unity/extras/memory/src/unity_memory.h +6 -5
- data/vendor/unity/extras/memory/test/Makefile +7 -0
- data/vendor/unity/extras/memory/test/unity_memory_Test.c +6 -5
- data/vendor/unity/extras/memory/test/unity_memory_TestRunner.c +6 -5
- data/vendor/unity/extras/memory/test/unity_output_Spy.c +6 -5
- data/vendor/unity/extras/memory/test/unity_output_Spy.h +6 -5
- data/vendor/unity/library.json +25 -0
- data/vendor/unity/meson.build +71 -5
- data/vendor/unity/meson_options.txt +3 -0
- data/vendor/unity/platformio-build.py +24 -0
- data/vendor/unity/src/meson.build +11 -5
- data/vendor/unity/src/unity.c +535 -144
- data/vendor/unity/src/unity.h +50 -13
- data/vendor/unity/src/unity_internals.h +199 -55
- data/vendor/unity/test/Makefile +7 -0
- data/vendor/unity/test/rakefile +6 -5
- data/vendor/unity/test/rakefile_helper.rb +9 -8
- data/vendor/unity/test/spec/generate_module_existing_file_spec.rb +6 -0
- data/vendor/unity/test/targets/ansi.yml +7 -0
- data/vendor/unity/test/targets/clang_file.yml +7 -0
- data/vendor/unity/test/targets/clang_strict.yml +8 -0
- data/vendor/unity/test/targets/gcc_32.yml +7 -0
- data/vendor/unity/test/targets/gcc_64.yml +7 -0
- data/vendor/unity/test/targets/gcc_auto_limits.yml +7 -0
- data/vendor/unity/test/targets/gcc_auto_stdint.yml +7 -0
- data/vendor/unity/test/targets/gcc_manual_math.yml +7 -0
- data/vendor/unity/test/targets/hitech_picc18.yml +7 -0
- data/vendor/unity/test/targets/iar_arm_v4.yml +7 -0
- data/vendor/unity/test/targets/iar_arm_v5.yml +7 -0
- data/vendor/unity/test/targets/iar_arm_v5_3.yml +7 -0
- data/vendor/unity/test/targets/iar_armcortex_LM3S9B92_v5_4.yml +7 -0
- data/vendor/unity/test/targets/iar_cortexm3_v5.yml +7 -0
- data/vendor/unity/test/targets/iar_msp430.yml +7 -0
- data/vendor/unity/test/targets/iar_sh2a_v6.yml +7 -0
- data/vendor/unity/test/testdata/CException.h +7 -0
- data/vendor/unity/test/testdata/Defs.h +8 -0
- data/vendor/unity/test/testdata/cmock.h +7 -0
- data/vendor/unity/test/testdata/mockMock.h +7 -0
- data/vendor/unity/test/testdata/testRunnerGenerator.c +18 -3
- data/vendor/unity/test/testdata/testRunnerGeneratorSmall.c +8 -5
- data/vendor/unity/test/testdata/testRunnerGeneratorWithMocks.c +7 -4
- data/vendor/unity/test/tests/self_assessment_utils.h +12 -5
- data/vendor/unity/test/tests/test_generate_test_runner.rb +107 -26
- data/vendor/unity/test/tests/test_unity_arrays.c +73 -6
- data/vendor/unity/test/tests/test_unity_core.c +12 -8
- data/vendor/unity/test/tests/test_unity_doubles.c +517 -5
- data/vendor/unity/test/tests/test_unity_floats.c +516 -5
- data/vendor/unity/test/tests/test_unity_integers.c +21 -5
- data/vendor/unity/test/tests/test_unity_integers_64.c +16 -6
- data/vendor/unity/test/tests/test_unity_memory.c +6 -5
- data/vendor/unity/test/tests/test_unity_parameterized.c +146 -8
- data/vendor/unity/test/tests/test_unity_parameterizedDemo.c +28 -0
- data/vendor/unity/test/tests/test_unity_strings.c +6 -5
- data/vendor/unity/test/tests/types_for_test.h +21 -0
- metadata +1231 -438
- data/assets/auto_link_deep_dependencies/src/a.c +0 -7
- data/assets/auto_link_deep_dependencies/src/b.c +0 -7
- data/assets/auto_link_deep_dependencies/src/c.c +0 -8
- data/assets/auto_link_deep_dependencies/src/internal_inc/a.h +0 -6
- data/assets/auto_link_deep_dependencies/src/internal_inc/b.h +0 -6
- data/assets/auto_link_deep_dependencies/src/internal_inc/c.h +0 -6
- data/assets/auto_link_deep_dependencies/src/internal_inc/never_compiled.h +0 -6
- data/assets/auto_link_deep_dependencies/src/never_compiled.c +0 -6
- data/assets/auto_link_deep_dependencies/test/test_a.c +0 -11
- data/assets/auto_link_deep_dependencies/test/test_b.c +0 -11
- data/assets/auto_link_deep_dependencies/test/test_c.c +0 -11
- data/assets/project_with_guts_gcov.yml +0 -102
- data/docs/Ceedling Powerful Plugins.pdf +0 -0
- data/examples/blinky/project.yml +0 -101
- data/examples/blinky/rakefile.rb +0 -30
- data/examples/blinky/src/BlinkTask.c +0 -21
- data/examples/blinky/src/BlinkTask.h +0 -6
- data/examples/blinky/src/Configure.c +0 -36
- data/examples/blinky/src/Configure.h +0 -6
- data/examples/blinky/src/main.c +0 -51
- data/examples/blinky/src/main.h +0 -9
- data/examples/blinky/test/support/stub_interrupt.h +0 -347
- data/examples/blinky/test/support/stub_io.h +0 -421
- data/examples/blinky/test/support/stub_iom328p.h +0 -883
- data/examples/blinky/test/support/stub_sfr_defs.h +0 -269
- data/examples/blinky/test/test_BlinkTask.c +0 -42
- data/examples/blinky/test/test_Configure.c +0 -29
- data/examples/blinky/test/test_main.c +0 -60
- data/examples/temp_sensor/build/test/cache/AdcConductor.h +0 -20
- data/examples/temp_sensor/build/test/cache/AdcHardware.h +0 -16
- data/examples/temp_sensor/build/test/cache/AdcHardwareConfigurator.h +0 -14
- data/examples/temp_sensor/build/test/cache/AdcModel.h +0 -20
- data/examples/temp_sensor/build/test/cache/AdcTemperatureSensor.h +0 -14
- data/examples/temp_sensor/build/test/cache/Executor.h +0 -12
- data/examples/temp_sensor/build/test/cache/IntrinsicsWrapper.h +0 -9
- data/examples/temp_sensor/build/test/cache/Model.h +0 -10
- data/examples/temp_sensor/build/test/cache/TaskScheduler.h +0 -16
- data/examples/temp_sensor/build/test/cache/TemperatureCalculator.h +0 -10
- data/examples/temp_sensor/build/test/cache/TemperatureFilter.h +0 -14
- data/examples/temp_sensor/build/test/cache/TestAdcConductor.c +0 -169
- data/examples/temp_sensor/build/test/cache/TestAdcHardware.c +0 -82
- data/examples/temp_sensor/build/test/cache/TestAdcModel.c +0 -59
- data/examples/temp_sensor/build/test/cache/TestExecutor.c +0 -63
- data/examples/temp_sensor/build/test/cache/TestMain.c +0 -43
- data/examples/temp_sensor/build/test/cache/TestModel.c +0 -34
- data/examples/temp_sensor/build/test/cache/TestTaskScheduler.c +0 -204
- data/examples/temp_sensor/build/test/cache/TestTemperatureCalculator.c +0 -70
- data/examples/temp_sensor/build/test/cache/TestTemperatureFilter.c +0 -154
- data/examples/temp_sensor/build/test/cache/TestTimerConductor.c +0 -57
- data/examples/temp_sensor/build/test/cache/TestTimerHardware.c +0 -47
- data/examples/temp_sensor/build/test/cache/TestTimerModel.c +0 -31
- data/examples/temp_sensor/build/test/cache/TestUsartBaudRateRegisterCalculator.c +0 -38
- data/examples/temp_sensor/build/test/cache/TestUsartConductor.c +0 -73
- data/examples/temp_sensor/build/test/cache/TestUsartHardware.c +0 -66
- data/examples/temp_sensor/build/test/cache/TestUsartModel.c +0 -73
- data/examples/temp_sensor/build/test/cache/TimerConductor.h +0 -12
- data/examples/temp_sensor/build/test/cache/TimerConfigurator.h +0 -24
- data/examples/temp_sensor/build/test/cache/TimerHardware.h +0 -10
- data/examples/temp_sensor/build/test/cache/TimerInterruptHandler.h +0 -14
- data/examples/temp_sensor/build/test/cache/TimerModel.h +0 -10
- data/examples/temp_sensor/build/test/cache/UsartBaudRateRegisterCalculator.h +0 -10
- data/examples/temp_sensor/build/test/cache/UsartConductor.h +0 -9
- data/examples/temp_sensor/build/test/cache/UsartConfigurator.h +0 -20
- data/examples/temp_sensor/build/test/cache/UsartHardware.h +0 -12
- data/examples/temp_sensor/build/test/cache/UsartModel.h +0 -14
- data/examples/temp_sensor/build/test/cache/UsartPutChar.h +0 -10
- data/examples/temp_sensor/build/test/cache/defines_dependency.yml +0 -77
- data/examples/temp_sensor/build/test/cache/input.yml +0 -310
- data/examples/temp_sensor/build/test/mocks/MockAdcConductor.c +0 -391
- data/examples/temp_sensor/build/test/mocks/MockAdcConductor.h +0 -64
- data/examples/temp_sensor/build/test/mocks/MockAdcHardware.c +0 -313
- data/examples/temp_sensor/build/test/mocks/MockAdcHardware.h +0 -58
- data/examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.c +0 -218
- data/examples/temp_sensor/build/test/mocks/MockAdcHardwareConfigurator.h +0 -52
- data/examples/temp_sensor/build/test/mocks/MockAdcModel.c +0 -453
- data/examples/temp_sensor/build/test/mocks/MockAdcModel.h +0 -64
- data/examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.c +0 -252
- data/examples/temp_sensor/build/test/mocks/MockAdcTemperatureSensor.h +0 -52
- data/examples/temp_sensor/build/test/mocks/MockExecutor.c +0 -174
- data/examples/temp_sensor/build/test/mocks/MockExecutor.h +0 -46
- data/examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.c +0 -157
- data/examples/temp_sensor/build/test/mocks/MockIntrinsicsWrapper.h +0 -46
- data/examples/temp_sensor/build/test/mocks/MockModel.c +0 -96
- data/examples/temp_sensor/build/test/mocks/MockModel.h +0 -40
- data/examples/temp_sensor/build/test/mocks/MockTaskScheduler.c +0 -326
- data/examples/temp_sensor/build/test/mocks/MockTaskScheduler.h +0 -58
- data/examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.c +0 -126
- data/examples/temp_sensor/build/test/mocks/MockTemperatureCalculator.h +0 -40
- data/examples/temp_sensor/build/test/mocks/MockTemperatureFilter.c +0 -248
- data/examples/temp_sensor/build/test/mocks/MockTemperatureFilter.h +0 -52
- data/examples/temp_sensor/build/test/mocks/MockTimerConductor.c +0 -157
- data/examples/temp_sensor/build/test/mocks/MockTimerConductor.h +0 -46
- data/examples/temp_sensor/build/test/mocks/MockTimerConfigurator.c +0 -523
- data/examples/temp_sensor/build/test/mocks/MockTimerConfigurator.h +0 -82
- data/examples/temp_sensor/build/test/mocks/MockTimerHardware.c +0 -96
- data/examples/temp_sensor/build/test/mocks/MockTimerHardware.h +0 -40
- data/examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.c +0 -248
- data/examples/temp_sensor/build/test/mocks/MockTimerInterruptHandler.h +0 -52
- data/examples/temp_sensor/build/test/mocks/MockTimerModel.c +0 -109
- data/examples/temp_sensor/build/test/mocks/MockTimerModel.h +0 -40
- data/examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.c +0 -133
- data/examples/temp_sensor/build/test/mocks/MockUsartBaudRateRegisterCalculator.h +0 -40
- data/examples/temp_sensor/build/test/mocks/MockUsartConductor.c +0 -157
- data/examples/temp_sensor/build/test/mocks/MockUsartConductor.h +0 -46
- data/examples/temp_sensor/build/test/mocks/MockUsartConfigurator.c +0 -414
- data/examples/temp_sensor/build/test/mocks/MockUsartConfigurator.h +0 -70
- data/examples/temp_sensor/build/test/mocks/MockUsartHardware.c +0 -183
- data/examples/temp_sensor/build/test/mocks/MockUsartHardware.h +0 -46
- data/examples/temp_sensor/build/test/mocks/MockUsartModel.c +0 -269
- data/examples/temp_sensor/build/test/mocks/MockUsartModel.h +0 -52
- data/examples/temp_sensor/build/test/mocks/MockUsartPutChar.c +0 -109
- data/examples/temp_sensor/build/test/mocks/MockUsartPutChar.h +0 -40
- 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 +0 -20
- data/examples/temp_sensor/build/test/preprocess/files/AdcHardware.h +0 -16
- data/examples/temp_sensor/build/test/preprocess/files/AdcHardwareConfigurator.h +0 -14
- data/examples/temp_sensor/build/test/preprocess/files/AdcModel.h +0 -20
- data/examples/temp_sensor/build/test/preprocess/files/AdcTemperatureSensor.h +0 -14
- data/examples/temp_sensor/build/test/preprocess/files/Executor.h +0 -12
- data/examples/temp_sensor/build/test/preprocess/files/IntrinsicsWrapper.h +0 -9
- data/examples/temp_sensor/build/test/preprocess/files/Model.h +0 -10
- data/examples/temp_sensor/build/test/preprocess/files/TaskScheduler.h +0 -16
- data/examples/temp_sensor/build/test/preprocess/files/TemperatureCalculator.h +0 -10
- data/examples/temp_sensor/build/test/preprocess/files/TemperatureFilter.h +0 -14
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcConductor.c +0 -169
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcHardware.c +0 -82
- data/examples/temp_sensor/build/test/preprocess/files/TestAdcModel.c +0 -59
- data/examples/temp_sensor/build/test/preprocess/files/TestExecutor.c +0 -63
- data/examples/temp_sensor/build/test/preprocess/files/TestMain.c +0 -43
- data/examples/temp_sensor/build/test/preprocess/files/TestModel.c +0 -34
- data/examples/temp_sensor/build/test/preprocess/files/TestTaskScheduler.c +0 -204
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureCalculator.c +0 -70
- data/examples/temp_sensor/build/test/preprocess/files/TestTemperatureFilter.c +0 -154
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerConductor.c +0 -57
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerHardware.c +0 -47
- data/examples/temp_sensor/build/test/preprocess/files/TestTimerModel.c +0 -31
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartBaudRateRegisterCalculator.c +0 -38
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartConductor.c +0 -73
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartHardware.c +0 -66
- data/examples/temp_sensor/build/test/preprocess/files/TestUsartModel.c +0 -73
- data/examples/temp_sensor/build/test/preprocess/files/TimerConductor.h +0 -12
- data/examples/temp_sensor/build/test/preprocess/files/TimerConfigurator.h +0 -24
- data/examples/temp_sensor/build/test/preprocess/files/TimerHardware.h +0 -10
- data/examples/temp_sensor/build/test/preprocess/files/TimerInterruptHandler.h +0 -14
- data/examples/temp_sensor/build/test/preprocess/files/TimerModel.h +0 -10
- data/examples/temp_sensor/build/test/preprocess/files/UsartBaudRateRegisterCalculator.h +0 -10
- data/examples/temp_sensor/build/test/preprocess/files/UsartConductor.h +0 -9
- data/examples/temp_sensor/build/test/preprocess/files/UsartConfigurator.h +0 -20
- data/examples/temp_sensor/build/test/preprocess/files/UsartHardware.h +0 -12
- data/examples/temp_sensor/build/test/preprocess/files/UsartModel.h +0 -14
- data/examples/temp_sensor/build/test/preprocess/files/UsartPutChar.h +0 -10
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcConductor.c +0 -7
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcHardware.c +0 -6
- data/examples/temp_sensor/build/test/preprocess/includes/TestAdcModel.c +0 -7
- data/examples/temp_sensor/build/test/preprocess/includes/TestExecutor.c +0 -9
- data/examples/temp_sensor/build/test/preprocess/includes/TestMain.c +0 -5
- data/examples/temp_sensor/build/test/preprocess/includes/TestModel.c +0 -6
- data/examples/temp_sensor/build/test/preprocess/includes/TestTaskScheduler.c +0 -4
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureCalculator.c +0 -4
- data/examples/temp_sensor/build/test/preprocess/includes/TestTemperatureFilter.c +0 -4
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerConductor.c +0 -7
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerHardware.c +0 -5
- data/examples/temp_sensor/build/test/preprocess/includes/TestTimerModel.c +0 -5
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartBaudRateRegisterCalculator.c +0 -4
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartConductor.c +0 -7
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartHardware.c +0 -6
- data/examples/temp_sensor/build/test/preprocess/includes/TestUsartModel.c +0 -7
- data/examples/temp_sensor/test/TestAdcConductor.c +0 -121
- data/examples/temp_sensor/test/TestAdcHardware.c +0 -44
- data/examples/temp_sensor/test/TestAdcModel.c +0 -33
- data/lib/ceedling/build_invoker_utils.rb +0 -39
- data/lib/ceedling/cmock_builder.rb +0 -15
- data/lib/ceedling/file_system_utils.rb +0 -69
- data/lib/ceedling/par_map.rb +0 -19
- data/lib/ceedling/plugin_builder.rb +0 -53
- data/lib/ceedling/preprocessinator_helper.rb +0 -50
- data/lib/ceedling/project_config_manager.rb +0 -52
- data/lib/ceedling/project_file_loader.rb +0 -99
- data/lib/ceedling/rules_cmock.rake +0 -9
- data/lib/ceedling/rules_preprocess.rake +0 -26
- data/lib/ceedling/rules_release_deep_dependencies.rake +0 -15
- data/lib/ceedling/rules_tests_deep_dependencies.rake +0 -15
- data/lib/ceedling/streaminator.rb +0 -40
- data/lib/ceedling/streaminator_helper.rb +0 -15
- data/lib/ceedling/target_loader.rb +0 -38
- data/lib/ceedling/tasks_release_deep_dependencies.rake +0 -9
- data/lib/ceedling/tasks_tests_deep_dependencies.rake +0 -9
- data/lib/ceedling/tasks_vendor.rake +0 -35
- data/lib/ceedling/test_includes_extractor.rb +0 -111
- data/lib/ceedling/version.rb +0 -50
- data/plugins/colour_report/README.md +0 -20
- data/plugins/colour_report/lib/colour_report.rb +0 -16
- data/plugins/compile_commands_json/README.md +0 -29
- data/plugins/compile_commands_json/lib/compile_commands_json.rb +0 -35
- data/plugins/gcov/assets/template.erb +0 -15
- data/plugins/json_tests_report/README.md +0 -36
- data/plugins/json_tests_report/lib/json_tests_report.rb +0 -83
- data/plugins/junit_tests_report/README.md +0 -36
- data/plugins/junit_tests_report/lib/junit_tests_report.rb +0 -134
- data/plugins/raw_output_report/README.md +0 -19
- data/plugins/raw_output_report/lib/raw_output_report.rb +0 -41
- data/plugins/stdout_gtestlike_tests_report/README.md +0 -19
- data/plugins/stdout_gtestlike_tests_report/assets/template.erb +0 -84
- data/plugins/stdout_gtestlike_tests_report/assets/template.erb copy +0 -59
- data/plugins/stdout_gtestlike_tests_report/config/stdout_gtestlike_tests_report.yml +0 -4
- data/plugins/stdout_gtestlike_tests_report/lib/stdout_gtestlike_tests_report.rb +0 -43
- data/plugins/stdout_ide_tests_report/README.md +0 -18
- data/plugins/stdout_ide_tests_report/config/stdout_ide_tests_report.yml +0 -4
- data/plugins/stdout_ide_tests_report/lib/stdout_ide_tests_report.rb +0 -44
- data/plugins/stdout_pretty_tests_report/README.md +0 -20
- data/plugins/stdout_pretty_tests_report/assets/template.erb +0 -59
- data/plugins/stdout_pretty_tests_report/config/stdout_pretty_tests_report.yml +0 -4
- data/plugins/stdout_pretty_tests_report/lib/stdout_pretty_tests_report.rb +0 -47
- data/plugins/subprojects/README.md +0 -63
- data/plugins/subprojects/config/defaults.yml +0 -33
- data/plugins/subprojects/lib/subprojects.rb +0 -92
- data/plugins/subprojects/subprojects.rake +0 -78
- data/plugins/teamcity_tests_report/README.md +0 -18
- data/plugins/teamcity_tests_report/config/teamcity_tests_report.yml +0 -4
- data/plugins/teamcity_tests_report/lib/teamcity_tests_report.rb +0 -57
- data/plugins/warnings_report/README.md +0 -19
- data/plugins/warnings_report/lib/warnings_report.rb +0 -69
- data/plugins/xml_tests_report/README.md +0 -36
- data/plugins/xml_tests_report/lib/xml_tests_report.rb +0 -110
- data/spec/build_invoker_utils_spec.rb +0 -54
- data/spec/ceedling_spec.rb +0 -154
- data/spec/par_map_spec.rb +0 -57
- data/spec/system/deployment_spec.rb +0 -255
- data/spec/target_loader_spec.rb +0 -30
- data/spec/uncatagorized_specs_spec.rb +0 -8
- data/vendor/behaviors/Manifest.txt +0 -9
- data/vendor/behaviors/Rakefile +0 -19
- data/vendor/behaviors/lib/behaviors/reporttask.rb +0 -158
- data/vendor/behaviors/lib/behaviors.rb +0 -76
- data/vendor/behaviors/test/behaviors_tasks_test.rb +0 -73
- data/vendor/behaviors/test/behaviors_test.rb +0 -50
- data/vendor/behaviors/test/tasks_test/Rakefile +0 -19
- data/vendor/behaviors/test/tasks_test/lib/user.rb +0 -2
- data/vendor/behaviors/test/tasks_test/test/user_test.rb +0 -17
- data/vendor/c_exception/Gemfile +0 -4
- data/vendor/c_exception/Gemfile.lock +0 -12
- data/vendor/cmock/examples/temp_sensor/gcc.yml +0 -44
- data/vendor/cmock/examples/temp_sensor/iar_v4.yml +0 -92
- data/vendor/cmock/examples/temp_sensor/iar_v5.yml +0 -81
- data/vendor/cmock/vendor/c_exception/Gemfile +0 -4
- data/vendor/cmock/vendor/c_exception/Gemfile.lock +0 -12
- data/vendor/cmock/vendor/unity/auto/unity_to_junit.py +0 -146
- data/vendor/hardmock/CHANGES +0 -78
- data/vendor/hardmock/LICENSE +0 -7
- data/vendor/hardmock/README +0 -70
- data/vendor/hardmock/Rakefile +0 -8
- data/vendor/hardmock/config/environment.rb +0 -12
- data/vendor/hardmock/lib/assert_error.rb +0 -23
- data/vendor/hardmock/lib/extend_test_unit.rb +0 -14
- data/vendor/hardmock/lib/hardmock/errors.rb +0 -22
- data/vendor/hardmock/lib/hardmock/expectation.rb +0 -229
- data/vendor/hardmock/lib/hardmock/expectation_builder.rb +0 -9
- data/vendor/hardmock/lib/hardmock/expector.rb +0 -26
- data/vendor/hardmock/lib/hardmock/method_cleanout.rb +0 -33
- data/vendor/hardmock/lib/hardmock/mock.rb +0 -180
- data/vendor/hardmock/lib/hardmock/mock_control.rb +0 -53
- data/vendor/hardmock/lib/hardmock/stubbing.rb +0 -210
- data/vendor/hardmock/lib/hardmock/trapper.rb +0 -31
- data/vendor/hardmock/lib/hardmock/utils.rb +0 -9
- data/vendor/hardmock/lib/hardmock.rb +0 -86
- data/vendor/hardmock/lib/test_unit_before_after.rb +0 -169
- data/vendor/hardmock/rake_tasks/rdoc.rake +0 -19
- data/vendor/hardmock/rake_tasks/rdoc_options.rb +0 -4
- data/vendor/hardmock/rake_tasks/test.rake +0 -22
- data/vendor/hardmock/test/functional/assert_error_test.rb +0 -52
- data/vendor/hardmock/test/functional/auto_verify_test.rb +0 -178
- data/vendor/hardmock/test/functional/direct_mock_usage_test.rb +0 -396
- data/vendor/hardmock/test/functional/hardmock_test.rb +0 -434
- data/vendor/hardmock/test/functional/stubbing_test.rb +0 -479
- data/vendor/hardmock/test/test_helper.rb +0 -43
- data/vendor/hardmock/test/unit/expectation_builder_test.rb +0 -19
- data/vendor/hardmock/test/unit/expectation_test.rb +0 -372
- data/vendor/hardmock/test/unit/expector_test.rb +0 -57
- data/vendor/hardmock/test/unit/method_cleanout_test.rb +0 -36
- data/vendor/hardmock/test/unit/mock_control_test.rb +0 -175
- data/vendor/hardmock/test/unit/mock_test.rb +0 -279
- data/vendor/hardmock/test/unit/test_unit_before_after_test.rb +0 -452
- data/vendor/hardmock/test/unit/trapper_test.rb +0 -62
- data/vendor/hardmock/test/unit/verify_error_test.rb +0 -40
- data/vendor/unity/auto/unity_to_junit.py +0 -146
- /data/{examples/temp_sensor/build/test/preprocess/includes/AdcConductor.h → build/test/preprocess/includes/TestAdcConductor/AdcHardware.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/AdcHardware.h → build/test/preprocess/includes/TestAdcConductor/AdcModel.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/AdcHardwareConfigurator.h → build/test/preprocess/includes/TestAdcHardware/AdcHardwareConfigurator.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/AdcModel.h → build/test/preprocess/includes/TestAdcHardware/AdcTemperatureSensor.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/AdcTemperatureSensor.h → build/test/preprocess/includes/TestAdcModel/TaskScheduler.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/Executor.h → build/test/preprocess/includes/TestAdcModel/TemperatureCalculator.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/Model.h → build/test/preprocess/includes/TestAdcModel/TemperatureFilter.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TaskScheduler.h → build/test/preprocess/includes/TestExecutor/AdcConductor.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/IntrinsicsWrapper.h → build/test/preprocess/includes/TestExecutor/IntrinsicsWrapper.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TemperatureCalculator.h → build/test/preprocess/includes/TestExecutor/Model.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TemperatureFilter.h → build/test/preprocess/includes/TestExecutor/TimerConductor.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/UsartConductor.h → build/test/preprocess/includes/TestExecutor/UsartConductor.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TimerConductor.h → build/test/preprocess/includes/TestMain/Executor.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TimerConfigurator.h → build/test/preprocess/includes/TestModel/TaskScheduler.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TimerHardware.h → build/test/preprocess/includes/TestModel/TemperatureFilter.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TimerInterruptHandler.h → build/test/preprocess/includes/TestTimerConductor/TimerHardware.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/TimerModel.h → build/test/preprocess/includes/TestTimerConductor/TimerInterruptHandler.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/UsartBaudRateRegisterCalculator.h → build/test/preprocess/includes/TestTimerConductor/TimerModel.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/UsartConfigurator.h → build/test/preprocess/includes/TestTimerHardware/TimerConfigurator.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/UsartHardware.h → build/test/preprocess/includes/TestTimerIntegrated/TaskScheduler.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/UsartModel.h → build/test/preprocess/includes/TestTimerIntegrated/TimerConfigurator.h.yml} +0 -0
- /data/{examples/temp_sensor/build/test/preprocess/includes/UsartPutChar.h → build/test/preprocess/includes/TestTimerIntegrated/TimerInterruptHandler.h.yml} +0 -0
@@ -0,0 +1,1183 @@
|
|
1
|
+
/* =========================================================================
|
2
|
+
Unity - A Test Framework for C
|
3
|
+
ThrowTheSwitch.org
|
4
|
+
Copyright (c) 2007-24 Mike Karlesky, Mark VanderVoord, & Greg Williams
|
5
|
+
SPDX-License-Identifier: MIT
|
6
|
+
========================================================================= */
|
7
|
+
|
8
|
+
#ifndef UNITY_INTERNALS_H
|
9
|
+
#define UNITY_INTERNALS_H
|
10
|
+
|
11
|
+
#ifdef UNITY_INCLUDE_CONFIG_H
|
12
|
+
#include "unity_config.h"
|
13
|
+
#endif
|
14
|
+
|
15
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
16
|
+
#include <setjmp.h>
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#ifndef UNITY_EXCLUDE_MATH_H
|
20
|
+
#include <math.h>
|
21
|
+
#endif
|
22
|
+
|
23
|
+
#ifndef UNITY_EXCLUDE_STDDEF_H
|
24
|
+
#include <stddef.h>
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#ifdef UNITY_INCLUDE_PRINT_FORMATTED
|
28
|
+
#include <stdarg.h>
|
29
|
+
#endif
|
30
|
+
|
31
|
+
/* Unity Attempts to Auto-Detect Integer Types
|
32
|
+
* Attempt 1: UINT_MAX, ULONG_MAX in <limits.h>, or default to 32 bits
|
33
|
+
* Attempt 2: UINTPTR_MAX in <stdint.h>, or default to same size as long
|
34
|
+
* The user may override any of these derived constants:
|
35
|
+
* UNITY_INT_WIDTH, UNITY_LONG_WIDTH, UNITY_POINTER_WIDTH */
|
36
|
+
#ifndef UNITY_EXCLUDE_STDINT_H
|
37
|
+
#include <stdint.h>
|
38
|
+
#endif
|
39
|
+
|
40
|
+
#ifndef UNITY_EXCLUDE_LIMITS_H
|
41
|
+
#include <limits.h>
|
42
|
+
#endif
|
43
|
+
|
44
|
+
#if defined(__GNUC__) || defined(__clang__)
|
45
|
+
#define UNITY_FUNCTION_ATTR(a) __attribute__((a))
|
46
|
+
#else
|
47
|
+
#define UNITY_FUNCTION_ATTR(a) /* ignore */
|
48
|
+
#endif
|
49
|
+
|
50
|
+
/* UNITY_NORETURN is only required if we have setjmp.h. */
|
51
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
52
|
+
#ifndef UNITY_NORETURN
|
53
|
+
#if defined(__cplusplus)
|
54
|
+
#if __cplusplus >= 201103L
|
55
|
+
#define UNITY_NORETURN [[ noreturn ]]
|
56
|
+
#endif
|
57
|
+
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201112L && __STDC_VERSION__ < 202311L
|
58
|
+
/* _Noreturn keyword is used from C11 but deprecated in C23. */
|
59
|
+
#if defined(_WIN32) && defined(_MSC_VER)
|
60
|
+
/* We are using MSVC compiler on Windows platform. */
|
61
|
+
/* Not all Windows SDKs supports <stdnoreturn.h>, but compiler can support C11: */
|
62
|
+
/* https://devblogs.microsoft.com/cppblog/c11-and-c17-standard-support-arriving-in-msvc/ */
|
63
|
+
/* Not sure, that Mingw compilers has Windows SDK headers at all. */
|
64
|
+
#include <sdkddkver.h>
|
65
|
+
#endif
|
66
|
+
|
67
|
+
/* Using Windows SDK predefined macro for detecting supported SDK with MSVC compiler. */
|
68
|
+
/* Mingw GCC should work without that fixes. */
|
69
|
+
/* Based on: */
|
70
|
+
/* https://docs.microsoft.com/en-us/cpp/porting/modifying-winver-and-win32-winnt?view=msvc-170 */
|
71
|
+
/* NTDDI_WIN10_FE is equal to Windows 10 SDK 2104 */
|
72
|
+
#if defined(_MSC_VER) && ((!defined(NTDDI_WIN10_FE)) || WDK_NTDDI_VERSION < NTDDI_WIN10_FE)
|
73
|
+
/* Based on tests and: */
|
74
|
+
/* https://docs.microsoft.com/en-us/cpp/c-language/noreturn?view=msvc-170 */
|
75
|
+
/* https://en.cppreference.com/w/c/language/_Noreturn */
|
76
|
+
#define UNITY_NORETURN _Noreturn
|
77
|
+
#else /* Using newer Windows SDK or not MSVC compiler */
|
78
|
+
#if defined(__GNUC__)
|
79
|
+
/* The header <stdnoreturn.h> collides with __attribute(noreturn)__ from GCC. */
|
80
|
+
#define UNITY_NORETURN _Noreturn
|
81
|
+
#else
|
82
|
+
#include <stdnoreturn.h>
|
83
|
+
#define UNITY_NORETURN noreturn
|
84
|
+
#endif
|
85
|
+
#endif
|
86
|
+
#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 202311L
|
87
|
+
/* Since C23, the keyword _Noreturn has been replaced by the attribute noreturn, based on: */
|
88
|
+
/* https://en.cppreference.com/w/c/language/attributes/noreturn */
|
89
|
+
#define UNITY_NORETURN [[ noreturn ]]
|
90
|
+
#endif
|
91
|
+
#endif
|
92
|
+
#ifndef UNITY_NORETURN
|
93
|
+
#define UNITY_NORETURN UNITY_FUNCTION_ATTR(__noreturn__)
|
94
|
+
#endif
|
95
|
+
#endif
|
96
|
+
|
97
|
+
/*-------------------------------------------------------
|
98
|
+
* Guess Widths If Not Specified
|
99
|
+
*-------------------------------------------------------*/
|
100
|
+
|
101
|
+
/* Determine the size of an int, if not already specified.
|
102
|
+
* We cannot use sizeof(int), because it is not yet defined
|
103
|
+
* at this stage in the translation of the C program.
|
104
|
+
* Also sizeof(int) does return the size in addressable units on all platforms,
|
105
|
+
* which may not necessarily be the size in bytes.
|
106
|
+
* Therefore, infer it from UINT_MAX if possible. */
|
107
|
+
#ifndef UNITY_INT_WIDTH
|
108
|
+
#ifdef UINT_MAX
|
109
|
+
#if (UINT_MAX == 0xFFFF)
|
110
|
+
#define UNITY_INT_WIDTH (16)
|
111
|
+
#elif (UINT_MAX == 0xFFFFFFFF)
|
112
|
+
#define UNITY_INT_WIDTH (32)
|
113
|
+
#elif (UINT_MAX == 0xFFFFFFFFFFFFFFFF)
|
114
|
+
#define UNITY_INT_WIDTH (64)
|
115
|
+
#endif
|
116
|
+
#else /* Set to default */
|
117
|
+
#define UNITY_INT_WIDTH (32)
|
118
|
+
#endif /* UINT_MAX */
|
119
|
+
#endif
|
120
|
+
|
121
|
+
/* Determine the size of a long, if not already specified. */
|
122
|
+
#ifndef UNITY_LONG_WIDTH
|
123
|
+
#ifdef ULONG_MAX
|
124
|
+
#if (ULONG_MAX == 0xFFFF)
|
125
|
+
#define UNITY_LONG_WIDTH (16)
|
126
|
+
#elif (ULONG_MAX == 0xFFFFFFFF)
|
127
|
+
#define UNITY_LONG_WIDTH (32)
|
128
|
+
#elif (ULONG_MAX == 0xFFFFFFFFFFFFFFFF)
|
129
|
+
#define UNITY_LONG_WIDTH (64)
|
130
|
+
#endif
|
131
|
+
#else /* Set to default */
|
132
|
+
#define UNITY_LONG_WIDTH (32)
|
133
|
+
#endif /* ULONG_MAX */
|
134
|
+
#endif
|
135
|
+
|
136
|
+
/* Determine the size of a pointer, if not already specified. */
|
137
|
+
#ifndef UNITY_POINTER_WIDTH
|
138
|
+
#ifdef UINTPTR_MAX
|
139
|
+
#if (UINTPTR_MAX <= 0xFFFF)
|
140
|
+
#define UNITY_POINTER_WIDTH (16)
|
141
|
+
#elif (UINTPTR_MAX <= 0xFFFFFFFF)
|
142
|
+
#define UNITY_POINTER_WIDTH (32)
|
143
|
+
#elif (UINTPTR_MAX <= 0xFFFFFFFFFFFFFFFF)
|
144
|
+
#define UNITY_POINTER_WIDTH (64)
|
145
|
+
#endif
|
146
|
+
#else /* Set to default */
|
147
|
+
#define UNITY_POINTER_WIDTH UNITY_LONG_WIDTH
|
148
|
+
#endif /* UINTPTR_MAX */
|
149
|
+
#endif
|
150
|
+
|
151
|
+
/*-------------------------------------------------------
|
152
|
+
* Int Support (Define types based on detected sizes)
|
153
|
+
*-------------------------------------------------------*/
|
154
|
+
|
155
|
+
#if (UNITY_INT_WIDTH == 32)
|
156
|
+
typedef unsigned char UNITY_UINT8;
|
157
|
+
typedef unsigned short UNITY_UINT16;
|
158
|
+
typedef unsigned int UNITY_UINT32;
|
159
|
+
typedef signed char UNITY_INT8;
|
160
|
+
typedef signed short UNITY_INT16;
|
161
|
+
typedef signed int UNITY_INT32;
|
162
|
+
#elif (UNITY_INT_WIDTH == 16)
|
163
|
+
typedef unsigned char UNITY_UINT8;
|
164
|
+
typedef unsigned int UNITY_UINT16;
|
165
|
+
typedef unsigned long UNITY_UINT32;
|
166
|
+
typedef signed char UNITY_INT8;
|
167
|
+
typedef signed int UNITY_INT16;
|
168
|
+
typedef signed long UNITY_INT32;
|
169
|
+
#else
|
170
|
+
#error Invalid UNITY_INT_WIDTH specified! (16 or 32 are supported)
|
171
|
+
#endif
|
172
|
+
|
173
|
+
/*-------------------------------------------------------
|
174
|
+
* 64-bit Support
|
175
|
+
*-------------------------------------------------------*/
|
176
|
+
|
177
|
+
/* Auto-detect 64 Bit Support */
|
178
|
+
#ifndef UNITY_SUPPORT_64
|
179
|
+
#if UNITY_LONG_WIDTH == 64 || UNITY_POINTER_WIDTH == 64
|
180
|
+
#define UNITY_SUPPORT_64
|
181
|
+
#endif
|
182
|
+
#endif
|
183
|
+
|
184
|
+
/* 64-Bit Support Dependent Configuration */
|
185
|
+
#ifndef UNITY_SUPPORT_64
|
186
|
+
/* No 64-bit Support */
|
187
|
+
typedef UNITY_UINT32 UNITY_UINT;
|
188
|
+
typedef UNITY_INT32 UNITY_INT;
|
189
|
+
#define UNITY_MAX_NIBBLES (8) /* Maximum number of nibbles in a UNITY_(U)INT */
|
190
|
+
#else
|
191
|
+
/* 64-bit Support */
|
192
|
+
#if (UNITY_LONG_WIDTH == 32)
|
193
|
+
typedef unsigned long long UNITY_UINT64;
|
194
|
+
typedef signed long long UNITY_INT64;
|
195
|
+
#elif (UNITY_LONG_WIDTH == 64)
|
196
|
+
typedef unsigned long UNITY_UINT64;
|
197
|
+
typedef signed long UNITY_INT64;
|
198
|
+
#else
|
199
|
+
#error Invalid UNITY_LONG_WIDTH specified! (32 or 64 are supported)
|
200
|
+
#endif
|
201
|
+
typedef UNITY_UINT64 UNITY_UINT;
|
202
|
+
typedef UNITY_INT64 UNITY_INT;
|
203
|
+
#define UNITY_MAX_NIBBLES (16) /* Maximum number of nibbles in a UNITY_(U)INT */
|
204
|
+
#endif
|
205
|
+
|
206
|
+
/*-------------------------------------------------------
|
207
|
+
* Pointer Support
|
208
|
+
*-------------------------------------------------------*/
|
209
|
+
|
210
|
+
#if (UNITY_POINTER_WIDTH == 32)
|
211
|
+
#define UNITY_PTR_TO_INT UNITY_INT32
|
212
|
+
#define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX32
|
213
|
+
#elif (UNITY_POINTER_WIDTH == 64)
|
214
|
+
#define UNITY_PTR_TO_INT UNITY_INT64
|
215
|
+
#define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX64
|
216
|
+
#elif (UNITY_POINTER_WIDTH == 16)
|
217
|
+
#define UNITY_PTR_TO_INT UNITY_INT16
|
218
|
+
#define UNITY_DISPLAY_STYLE_POINTER UNITY_DISPLAY_STYLE_HEX16
|
219
|
+
#else
|
220
|
+
#error Invalid UNITY_POINTER_WIDTH specified! (16, 32 or 64 are supported)
|
221
|
+
#endif
|
222
|
+
|
223
|
+
#ifndef UNITY_PTR_ATTRIBUTE
|
224
|
+
#define UNITY_PTR_ATTRIBUTE
|
225
|
+
#endif
|
226
|
+
|
227
|
+
#ifndef UNITY_INTERNAL_PTR
|
228
|
+
#define UNITY_INTERNAL_PTR UNITY_PTR_ATTRIBUTE const void*
|
229
|
+
#endif
|
230
|
+
|
231
|
+
/* optionally define UNITY_COMPARE_PTRS_ON_ZERO_ARRAY */
|
232
|
+
|
233
|
+
/*-------------------------------------------------------
|
234
|
+
* Float Support
|
235
|
+
*-------------------------------------------------------*/
|
236
|
+
|
237
|
+
#ifdef UNITY_EXCLUDE_FLOAT
|
238
|
+
|
239
|
+
/* No Floating Point Support */
|
240
|
+
#ifndef UNITY_EXCLUDE_DOUBLE
|
241
|
+
#define UNITY_EXCLUDE_DOUBLE /* Remove double when excluding float support */
|
242
|
+
#endif
|
243
|
+
#ifndef UNITY_EXCLUDE_FLOAT_PRINT
|
244
|
+
#define UNITY_EXCLUDE_FLOAT_PRINT
|
245
|
+
#endif
|
246
|
+
|
247
|
+
#else
|
248
|
+
|
249
|
+
/* Floating Point Support */
|
250
|
+
#ifndef UNITY_FLOAT_PRECISION
|
251
|
+
#define UNITY_FLOAT_PRECISION (0.00001f)
|
252
|
+
#endif
|
253
|
+
#ifndef UNITY_FLOAT_TYPE
|
254
|
+
#define UNITY_FLOAT_TYPE float
|
255
|
+
#endif
|
256
|
+
typedef UNITY_FLOAT_TYPE UNITY_FLOAT;
|
257
|
+
|
258
|
+
/* isnan macro should be provided by math.h. Override if not macro */
|
259
|
+
#ifndef UNITY_IS_NAN
|
260
|
+
#ifndef isnan
|
261
|
+
/* NaN is the only floating point value that does NOT equal itself.
|
262
|
+
* Therefore if n != n, then it is NaN. */
|
263
|
+
#define UNITY_IS_NAN(n) ((n != n) ? 1 : 0)
|
264
|
+
#else
|
265
|
+
#define UNITY_IS_NAN(n) isnan(n)
|
266
|
+
#endif
|
267
|
+
#endif
|
268
|
+
|
269
|
+
/* isinf macro should be provided by math.h. Override if not macro */
|
270
|
+
#ifndef UNITY_IS_INF
|
271
|
+
#ifndef isinf
|
272
|
+
/* The value of Inf - Inf is NaN */
|
273
|
+
#define UNITY_IS_INF(n) (UNITY_IS_NAN((n) - (n)) && !UNITY_IS_NAN(n))
|
274
|
+
#else
|
275
|
+
#define UNITY_IS_INF(n) isinf(n)
|
276
|
+
#endif
|
277
|
+
#endif
|
278
|
+
|
279
|
+
#endif
|
280
|
+
|
281
|
+
/*-------------------------------------------------------
|
282
|
+
* Double Float Support
|
283
|
+
*-------------------------------------------------------*/
|
284
|
+
|
285
|
+
/* unlike float, we DON'T include by default */
|
286
|
+
#if defined(UNITY_EXCLUDE_DOUBLE) || !defined(UNITY_INCLUDE_DOUBLE)
|
287
|
+
|
288
|
+
/* No Floating Point Support */
|
289
|
+
#ifndef UNITY_EXCLUDE_DOUBLE
|
290
|
+
#define UNITY_EXCLUDE_DOUBLE
|
291
|
+
#else
|
292
|
+
#undef UNITY_INCLUDE_DOUBLE
|
293
|
+
#endif
|
294
|
+
|
295
|
+
#ifndef UNITY_EXCLUDE_FLOAT
|
296
|
+
#ifndef UNITY_DOUBLE_TYPE
|
297
|
+
#define UNITY_DOUBLE_TYPE double
|
298
|
+
#endif
|
299
|
+
typedef UNITY_FLOAT UNITY_DOUBLE;
|
300
|
+
/* For parameter in UnityPrintFloat(UNITY_DOUBLE), which aliases to double or float */
|
301
|
+
#endif
|
302
|
+
|
303
|
+
#else
|
304
|
+
|
305
|
+
/* Double Floating Point Support */
|
306
|
+
#ifndef UNITY_DOUBLE_PRECISION
|
307
|
+
#define UNITY_DOUBLE_PRECISION (1e-12)
|
308
|
+
#endif
|
309
|
+
|
310
|
+
#ifndef UNITY_DOUBLE_TYPE
|
311
|
+
#define UNITY_DOUBLE_TYPE double
|
312
|
+
#endif
|
313
|
+
typedef UNITY_DOUBLE_TYPE UNITY_DOUBLE;
|
314
|
+
|
315
|
+
#endif
|
316
|
+
|
317
|
+
/*-------------------------------------------------------
|
318
|
+
* Output Method: stdout (DEFAULT)
|
319
|
+
*-------------------------------------------------------*/
|
320
|
+
#ifndef UNITY_OUTPUT_CHAR
|
321
|
+
/* Default to using putchar, which is defined in stdio.h */
|
322
|
+
#include <stdio.h>
|
323
|
+
#define UNITY_OUTPUT_CHAR(a) (void)putchar(a)
|
324
|
+
#else
|
325
|
+
/* If defined as something else, make sure we declare it here so it's ready for use */
|
326
|
+
#ifdef UNITY_OUTPUT_CHAR_HEADER_DECLARATION
|
327
|
+
extern void UNITY_OUTPUT_CHAR_HEADER_DECLARATION;
|
328
|
+
#endif
|
329
|
+
#endif
|
330
|
+
|
331
|
+
#ifndef UNITY_OUTPUT_FLUSH
|
332
|
+
#ifdef UNITY_USE_FLUSH_STDOUT
|
333
|
+
/* We want to use the stdout flush utility */
|
334
|
+
#include <stdio.h>
|
335
|
+
#define UNITY_OUTPUT_FLUSH() (void)fflush(stdout)
|
336
|
+
#else
|
337
|
+
/* We've specified nothing, therefore flush should just be ignored */
|
338
|
+
#define UNITY_OUTPUT_FLUSH() (void)0
|
339
|
+
#endif
|
340
|
+
#else
|
341
|
+
/* If defined as something else, make sure we declare it here so it's ready for use */
|
342
|
+
#ifdef UNITY_OUTPUT_FLUSH_HEADER_DECLARATION
|
343
|
+
extern void UNITY_OUTPUT_FLUSH_HEADER_DECLARATION;
|
344
|
+
#endif
|
345
|
+
#endif
|
346
|
+
|
347
|
+
#ifndef UNITY_OUTPUT_FLUSH
|
348
|
+
#define UNITY_FLUSH_CALL()
|
349
|
+
#else
|
350
|
+
#define UNITY_FLUSH_CALL() UNITY_OUTPUT_FLUSH()
|
351
|
+
#endif
|
352
|
+
|
353
|
+
#ifndef UNITY_PRINT_EOL
|
354
|
+
#define UNITY_PRINT_EOL() UNITY_OUTPUT_CHAR('\n')
|
355
|
+
#endif
|
356
|
+
|
357
|
+
#ifndef UNITY_OUTPUT_START
|
358
|
+
#define UNITY_OUTPUT_START()
|
359
|
+
#endif
|
360
|
+
|
361
|
+
#ifndef UNITY_OUTPUT_COMPLETE
|
362
|
+
#define UNITY_OUTPUT_COMPLETE()
|
363
|
+
#endif
|
364
|
+
|
365
|
+
#ifdef UNITY_INCLUDE_EXEC_TIME
|
366
|
+
#if !defined(UNITY_EXEC_TIME_START) && \
|
367
|
+
!defined(UNITY_EXEC_TIME_STOP) && \
|
368
|
+
!defined(UNITY_PRINT_EXEC_TIME) && \
|
369
|
+
!defined(UNITY_TIME_TYPE)
|
370
|
+
/* If none any of these macros are defined then try to provide a default implementation */
|
371
|
+
|
372
|
+
#if defined(UNITY_CLOCK_MS)
|
373
|
+
/* This is a simple way to get a default implementation on platforms that support getting a millisecond counter */
|
374
|
+
#define UNITY_TIME_TYPE UNITY_UINT
|
375
|
+
#define UNITY_EXEC_TIME_START() Unity.CurrentTestStartTime = UNITY_CLOCK_MS()
|
376
|
+
#define UNITY_EXEC_TIME_STOP() Unity.CurrentTestStopTime = UNITY_CLOCK_MS()
|
377
|
+
#define UNITY_PRINT_EXEC_TIME() { \
|
378
|
+
UNITY_UINT execTimeMs = (Unity.CurrentTestStopTime - Unity.CurrentTestStartTime); \
|
379
|
+
UnityPrint(" ("); \
|
380
|
+
UnityPrintNumberUnsigned(execTimeMs); \
|
381
|
+
UnityPrint(" ms)"); \
|
382
|
+
}
|
383
|
+
#elif defined(_WIN32)
|
384
|
+
#include <time.h>
|
385
|
+
#define UNITY_TIME_TYPE clock_t
|
386
|
+
#define UNITY_GET_TIME(t) t = (clock_t)((clock() * 1000) / CLOCKS_PER_SEC)
|
387
|
+
#define UNITY_EXEC_TIME_START() UNITY_GET_TIME(Unity.CurrentTestStartTime)
|
388
|
+
#define UNITY_EXEC_TIME_STOP() UNITY_GET_TIME(Unity.CurrentTestStopTime)
|
389
|
+
#define UNITY_PRINT_EXEC_TIME() { \
|
390
|
+
UNITY_UINT execTimeMs = (Unity.CurrentTestStopTime - Unity.CurrentTestStartTime); \
|
391
|
+
UnityPrint(" ("); \
|
392
|
+
UnityPrintNumberUnsigned(execTimeMs); \
|
393
|
+
UnityPrint(" ms)"); \
|
394
|
+
}
|
395
|
+
#elif defined(__unix__) || defined(__APPLE__)
|
396
|
+
#include <time.h>
|
397
|
+
#define UNITY_TIME_TYPE struct timespec
|
398
|
+
#define UNITY_GET_TIME(t) clock_gettime(CLOCK_MONOTONIC, &t)
|
399
|
+
#define UNITY_EXEC_TIME_START() UNITY_GET_TIME(Unity.CurrentTestStartTime)
|
400
|
+
#define UNITY_EXEC_TIME_STOP() UNITY_GET_TIME(Unity.CurrentTestStopTime)
|
401
|
+
#define UNITY_PRINT_EXEC_TIME() { \
|
402
|
+
UNITY_UINT execTimeMs = ((Unity.CurrentTestStopTime.tv_sec - Unity.CurrentTestStartTime.tv_sec) * 1000L); \
|
403
|
+
execTimeMs += ((Unity.CurrentTestStopTime.tv_nsec - Unity.CurrentTestStartTime.tv_nsec) / 1000000L); \
|
404
|
+
UnityPrint(" ("); \
|
405
|
+
UnityPrintNumberUnsigned(execTimeMs); \
|
406
|
+
UnityPrint(" ms)"); \
|
407
|
+
}
|
408
|
+
#endif
|
409
|
+
#endif
|
410
|
+
#endif
|
411
|
+
|
412
|
+
#ifndef UNITY_EXEC_TIME_START
|
413
|
+
#define UNITY_EXEC_TIME_START() do { /* nothing*/ } while (0)
|
414
|
+
#endif
|
415
|
+
|
416
|
+
#ifndef UNITY_EXEC_TIME_STOP
|
417
|
+
#define UNITY_EXEC_TIME_STOP() do { /* nothing*/ } while (0)
|
418
|
+
#endif
|
419
|
+
|
420
|
+
#ifndef UNITY_TIME_TYPE
|
421
|
+
#define UNITY_TIME_TYPE UNITY_UINT
|
422
|
+
#endif
|
423
|
+
|
424
|
+
#ifndef UNITY_PRINT_EXEC_TIME
|
425
|
+
#define UNITY_PRINT_EXEC_TIME() do { /* nothing*/ } while (0)
|
426
|
+
#endif
|
427
|
+
|
428
|
+
/*-------------------------------------------------------
|
429
|
+
* Footprint
|
430
|
+
*-------------------------------------------------------*/
|
431
|
+
|
432
|
+
#ifndef UNITY_LINE_TYPE
|
433
|
+
#define UNITY_LINE_TYPE UNITY_UINT
|
434
|
+
#endif
|
435
|
+
|
436
|
+
#ifndef UNITY_COUNTER_TYPE
|
437
|
+
#define UNITY_COUNTER_TYPE UNITY_UINT
|
438
|
+
#endif
|
439
|
+
|
440
|
+
/*-------------------------------------------------------
|
441
|
+
* Internal Structs Needed
|
442
|
+
*-------------------------------------------------------*/
|
443
|
+
|
444
|
+
typedef void (*UnityTestFunction)(void);
|
445
|
+
|
446
|
+
#define UNITY_DISPLAY_RANGE_INT (0x10)
|
447
|
+
#define UNITY_DISPLAY_RANGE_UINT (0x20)
|
448
|
+
#define UNITY_DISPLAY_RANGE_HEX (0x40)
|
449
|
+
#define UNITY_DISPLAY_RANGE_CHAR (0x80)
|
450
|
+
|
451
|
+
typedef enum
|
452
|
+
{
|
453
|
+
UNITY_DISPLAY_STYLE_INT = (UNITY_INT_WIDTH / 8) + UNITY_DISPLAY_RANGE_INT,
|
454
|
+
UNITY_DISPLAY_STYLE_INT8 = 1 + UNITY_DISPLAY_RANGE_INT,
|
455
|
+
UNITY_DISPLAY_STYLE_INT16 = 2 + UNITY_DISPLAY_RANGE_INT,
|
456
|
+
UNITY_DISPLAY_STYLE_INT32 = 4 + UNITY_DISPLAY_RANGE_INT,
|
457
|
+
#ifdef UNITY_SUPPORT_64
|
458
|
+
UNITY_DISPLAY_STYLE_INT64 = 8 + UNITY_DISPLAY_RANGE_INT,
|
459
|
+
#endif
|
460
|
+
|
461
|
+
UNITY_DISPLAY_STYLE_UINT = (UNITY_INT_WIDTH / 8) + UNITY_DISPLAY_RANGE_UINT,
|
462
|
+
UNITY_DISPLAY_STYLE_UINT8 = 1 + UNITY_DISPLAY_RANGE_UINT,
|
463
|
+
UNITY_DISPLAY_STYLE_UINT16 = 2 + UNITY_DISPLAY_RANGE_UINT,
|
464
|
+
UNITY_DISPLAY_STYLE_UINT32 = 4 + UNITY_DISPLAY_RANGE_UINT,
|
465
|
+
#ifdef UNITY_SUPPORT_64
|
466
|
+
UNITY_DISPLAY_STYLE_UINT64 = 8 + UNITY_DISPLAY_RANGE_UINT,
|
467
|
+
#endif
|
468
|
+
|
469
|
+
UNITY_DISPLAY_STYLE_HEX8 = 1 + UNITY_DISPLAY_RANGE_HEX,
|
470
|
+
UNITY_DISPLAY_STYLE_HEX16 = 2 + UNITY_DISPLAY_RANGE_HEX,
|
471
|
+
UNITY_DISPLAY_STYLE_HEX32 = 4 + UNITY_DISPLAY_RANGE_HEX,
|
472
|
+
#ifdef UNITY_SUPPORT_64
|
473
|
+
UNITY_DISPLAY_STYLE_HEX64 = 8 + UNITY_DISPLAY_RANGE_HEX,
|
474
|
+
#endif
|
475
|
+
|
476
|
+
UNITY_DISPLAY_STYLE_CHAR = 1 + UNITY_DISPLAY_RANGE_CHAR + UNITY_DISPLAY_RANGE_INT,
|
477
|
+
|
478
|
+
UNITY_DISPLAY_STYLE_UNKNOWN
|
479
|
+
} UNITY_DISPLAY_STYLE_T;
|
480
|
+
|
481
|
+
typedef enum
|
482
|
+
{
|
483
|
+
UNITY_WITHIN = 0x0,
|
484
|
+
UNITY_EQUAL_TO = 0x1,
|
485
|
+
UNITY_GREATER_THAN = 0x2,
|
486
|
+
UNITY_GREATER_OR_EQUAL = 0x2 + UNITY_EQUAL_TO,
|
487
|
+
UNITY_SMALLER_THAN = 0x4,
|
488
|
+
UNITY_SMALLER_OR_EQUAL = 0x4 + UNITY_EQUAL_TO,
|
489
|
+
UNITY_NOT_EQUAL = 0x0,
|
490
|
+
UNITY_UNKNOWN
|
491
|
+
} UNITY_COMPARISON_T;
|
492
|
+
|
493
|
+
#ifndef UNITY_EXCLUDE_FLOAT
|
494
|
+
typedef enum UNITY_FLOAT_TRAIT
|
495
|
+
{
|
496
|
+
UNITY_FLOAT_IS_NOT_INF = 0,
|
497
|
+
UNITY_FLOAT_IS_INF,
|
498
|
+
UNITY_FLOAT_IS_NOT_NEG_INF,
|
499
|
+
UNITY_FLOAT_IS_NEG_INF,
|
500
|
+
UNITY_FLOAT_IS_NOT_NAN,
|
501
|
+
UNITY_FLOAT_IS_NAN,
|
502
|
+
UNITY_FLOAT_IS_NOT_DET,
|
503
|
+
UNITY_FLOAT_IS_DET,
|
504
|
+
UNITY_FLOAT_INVALID_TRAIT
|
505
|
+
} UNITY_FLOAT_TRAIT_T;
|
506
|
+
#endif
|
507
|
+
|
508
|
+
typedef enum
|
509
|
+
{
|
510
|
+
UNITY_ARRAY_TO_VAL = 0,
|
511
|
+
UNITY_ARRAY_TO_ARRAY,
|
512
|
+
UNITY_ARRAY_UNKNOWN
|
513
|
+
} UNITY_FLAGS_T;
|
514
|
+
|
515
|
+
struct UNITY_STORAGE_T
|
516
|
+
{
|
517
|
+
const char* TestFile;
|
518
|
+
const char* CurrentTestName;
|
519
|
+
#ifndef UNITY_EXCLUDE_DETAILS
|
520
|
+
const char* CurrentDetail1;
|
521
|
+
const char* CurrentDetail2;
|
522
|
+
#endif
|
523
|
+
UNITY_LINE_TYPE CurrentTestLineNumber;
|
524
|
+
UNITY_COUNTER_TYPE NumberOfTests;
|
525
|
+
UNITY_COUNTER_TYPE TestFailures;
|
526
|
+
UNITY_COUNTER_TYPE TestIgnores;
|
527
|
+
UNITY_COUNTER_TYPE CurrentTestFailed;
|
528
|
+
UNITY_COUNTER_TYPE CurrentTestIgnored;
|
529
|
+
#ifdef UNITY_INCLUDE_EXEC_TIME
|
530
|
+
UNITY_TIME_TYPE CurrentTestStartTime;
|
531
|
+
UNITY_TIME_TYPE CurrentTestStopTime;
|
532
|
+
#endif
|
533
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
534
|
+
jmp_buf AbortFrame;
|
535
|
+
#endif
|
536
|
+
};
|
537
|
+
|
538
|
+
extern struct UNITY_STORAGE_T Unity;
|
539
|
+
|
540
|
+
/*-------------------------------------------------------
|
541
|
+
* Test Suite Management
|
542
|
+
*-------------------------------------------------------*/
|
543
|
+
|
544
|
+
void UnityBegin(const char* filename);
|
545
|
+
int UnityEnd(void);
|
546
|
+
void UnitySetTestFile(const char* filename);
|
547
|
+
void UnityConcludeTest(void);
|
548
|
+
|
549
|
+
#ifndef RUN_TEST
|
550
|
+
void UnityDefaultTestRun(UnityTestFunction Func, const char* FuncName, const int FuncLineNum);
|
551
|
+
#else
|
552
|
+
#define UNITY_SKIP_DEFAULT_RUNNER
|
553
|
+
#endif
|
554
|
+
|
555
|
+
/*-------------------------------------------------------
|
556
|
+
* Details Support
|
557
|
+
*-------------------------------------------------------*/
|
558
|
+
|
559
|
+
#ifdef UNITY_EXCLUDE_DETAILS
|
560
|
+
#define UNITY_CLR_DETAILS()
|
561
|
+
#define UNITY_SET_DETAIL(d1)
|
562
|
+
#define UNITY_SET_DETAILS(d1,d2)
|
563
|
+
#else
|
564
|
+
#define UNITY_CLR_DETAILS() do { Unity.CurrentDetail1 = 0; Unity.CurrentDetail2 = 0; } while (0)
|
565
|
+
#define UNITY_SET_DETAIL(d1) do { Unity.CurrentDetail1 = (d1); Unity.CurrentDetail2 = 0; } while (0)
|
566
|
+
#define UNITY_SET_DETAILS(d1,d2) do { Unity.CurrentDetail1 = (d1); Unity.CurrentDetail2 = (d2); } while (0)
|
567
|
+
|
568
|
+
#ifndef UNITY_DETAIL1_NAME
|
569
|
+
#define UNITY_DETAIL1_NAME "Function"
|
570
|
+
#endif
|
571
|
+
|
572
|
+
#ifndef UNITY_DETAIL2_NAME
|
573
|
+
#define UNITY_DETAIL2_NAME "Argument"
|
574
|
+
#endif
|
575
|
+
#endif
|
576
|
+
|
577
|
+
#ifdef UNITY_PRINT_TEST_CONTEXT
|
578
|
+
void UNITY_PRINT_TEST_CONTEXT(void);
|
579
|
+
#endif
|
580
|
+
|
581
|
+
/*-------------------------------------------------------
|
582
|
+
* Test Output
|
583
|
+
*-------------------------------------------------------*/
|
584
|
+
|
585
|
+
void UnityPrint(const char* string);
|
586
|
+
|
587
|
+
#ifdef UNITY_INCLUDE_PRINT_FORMATTED
|
588
|
+
void UnityPrintF(const UNITY_LINE_TYPE line, const char* format, ...);
|
589
|
+
#endif
|
590
|
+
|
591
|
+
void UnityPrintLen(const char* string, const UNITY_UINT32 length);
|
592
|
+
void UnityPrintMask(const UNITY_UINT mask, const UNITY_UINT number);
|
593
|
+
void UnityPrintNumberByStyle(const UNITY_INT number, const UNITY_DISPLAY_STYLE_T style);
|
594
|
+
void UnityPrintNumber(const UNITY_INT number_to_print);
|
595
|
+
void UnityPrintNumberUnsigned(const UNITY_UINT number);
|
596
|
+
void UnityPrintNumberHex(const UNITY_UINT number, const char nibbles_to_print);
|
597
|
+
|
598
|
+
#ifndef UNITY_EXCLUDE_FLOAT_PRINT
|
599
|
+
void UnityPrintFloat(const UNITY_DOUBLE input_number);
|
600
|
+
#endif
|
601
|
+
|
602
|
+
/*-------------------------------------------------------
|
603
|
+
* Test Assertion Functions
|
604
|
+
*-------------------------------------------------------
|
605
|
+
* Use the macros below this section instead of calling
|
606
|
+
* these directly. The macros have a consistent naming
|
607
|
+
* convention and will pull in file and line information
|
608
|
+
* for you. */
|
609
|
+
|
610
|
+
void UnityAssertEqualNumber(const UNITY_INT expected,
|
611
|
+
const UNITY_INT actual,
|
612
|
+
const char* msg,
|
613
|
+
const UNITY_LINE_TYPE lineNumber,
|
614
|
+
const UNITY_DISPLAY_STYLE_T style);
|
615
|
+
|
616
|
+
void UnityAssertGreaterOrLessOrEqualNumber(const UNITY_INT threshold,
|
617
|
+
const UNITY_INT actual,
|
618
|
+
const UNITY_COMPARISON_T compare,
|
619
|
+
const char *msg,
|
620
|
+
const UNITY_LINE_TYPE lineNumber,
|
621
|
+
const UNITY_DISPLAY_STYLE_T style);
|
622
|
+
|
623
|
+
void UnityAssertEqualIntArray(UNITY_INTERNAL_PTR expected,
|
624
|
+
UNITY_INTERNAL_PTR actual,
|
625
|
+
const UNITY_UINT32 num_elements,
|
626
|
+
const char* msg,
|
627
|
+
const UNITY_LINE_TYPE lineNumber,
|
628
|
+
const UNITY_DISPLAY_STYLE_T style,
|
629
|
+
const UNITY_FLAGS_T flags);
|
630
|
+
|
631
|
+
void UnityAssertBits(const UNITY_INT mask,
|
632
|
+
const UNITY_INT expected,
|
633
|
+
const UNITY_INT actual,
|
634
|
+
const char* msg,
|
635
|
+
const UNITY_LINE_TYPE lineNumber);
|
636
|
+
|
637
|
+
void UnityAssertEqualString(const char* expected,
|
638
|
+
const char* actual,
|
639
|
+
const char* msg,
|
640
|
+
const UNITY_LINE_TYPE lineNumber);
|
641
|
+
|
642
|
+
void UnityAssertEqualStringLen(const char* expected,
|
643
|
+
const char* actual,
|
644
|
+
const UNITY_UINT32 length,
|
645
|
+
const char* msg,
|
646
|
+
const UNITY_LINE_TYPE lineNumber);
|
647
|
+
|
648
|
+
void UnityAssertEqualStringArray( UNITY_INTERNAL_PTR expected,
|
649
|
+
const char** actual,
|
650
|
+
const UNITY_UINT32 num_elements,
|
651
|
+
const char* msg,
|
652
|
+
const UNITY_LINE_TYPE lineNumber,
|
653
|
+
const UNITY_FLAGS_T flags);
|
654
|
+
|
655
|
+
void UnityAssertEqualMemory( UNITY_INTERNAL_PTR expected,
|
656
|
+
UNITY_INTERNAL_PTR actual,
|
657
|
+
const UNITY_UINT32 length,
|
658
|
+
const UNITY_UINT32 num_elements,
|
659
|
+
const char* msg,
|
660
|
+
const UNITY_LINE_TYPE lineNumber,
|
661
|
+
const UNITY_FLAGS_T flags);
|
662
|
+
|
663
|
+
void UnityAssertNumbersWithin(const UNITY_UINT delta,
|
664
|
+
const UNITY_INT expected,
|
665
|
+
const UNITY_INT actual,
|
666
|
+
const char* msg,
|
667
|
+
const UNITY_LINE_TYPE lineNumber,
|
668
|
+
const UNITY_DISPLAY_STYLE_T style);
|
669
|
+
|
670
|
+
void UnityAssertNumbersArrayWithin(const UNITY_UINT delta,
|
671
|
+
UNITY_INTERNAL_PTR expected,
|
672
|
+
UNITY_INTERNAL_PTR actual,
|
673
|
+
const UNITY_UINT32 num_elements,
|
674
|
+
const char* msg,
|
675
|
+
const UNITY_LINE_TYPE lineNumber,
|
676
|
+
const UNITY_DISPLAY_STYLE_T style,
|
677
|
+
const UNITY_FLAGS_T flags);
|
678
|
+
|
679
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
680
|
+
UNITY_NORETURN void UnityFail(const char* message, const UNITY_LINE_TYPE line);
|
681
|
+
UNITY_NORETURN void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
|
682
|
+
#else
|
683
|
+
void UnityFail(const char* message, const UNITY_LINE_TYPE line);
|
684
|
+
void UnityIgnore(const char* message, const UNITY_LINE_TYPE line);
|
685
|
+
#endif
|
686
|
+
|
687
|
+
void UnityMessage(const char* message, const UNITY_LINE_TYPE line);
|
688
|
+
|
689
|
+
#ifndef UNITY_EXCLUDE_FLOAT
|
690
|
+
void UnityAssertFloatsWithin(const UNITY_FLOAT delta,
|
691
|
+
const UNITY_FLOAT expected,
|
692
|
+
const UNITY_FLOAT actual,
|
693
|
+
const char* msg,
|
694
|
+
const UNITY_LINE_TYPE lineNumber);
|
695
|
+
|
696
|
+
void UnityAssertFloatsNotWithin(const UNITY_FLOAT delta,
|
697
|
+
const UNITY_FLOAT expected,
|
698
|
+
const UNITY_FLOAT actual,
|
699
|
+
const char* msg,
|
700
|
+
const UNITY_LINE_TYPE lineNumber);
|
701
|
+
|
702
|
+
void UnityAssertGreaterOrLessFloat(const UNITY_FLOAT threshold,
|
703
|
+
const UNITY_FLOAT actual,
|
704
|
+
const UNITY_COMPARISON_T compare,
|
705
|
+
const char* msg,
|
706
|
+
const UNITY_LINE_TYPE linenumber);
|
707
|
+
|
708
|
+
void UnityAssertWithinFloatArray(const UNITY_FLOAT delta,
|
709
|
+
UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* expected,
|
710
|
+
UNITY_PTR_ATTRIBUTE const UNITY_FLOAT* actual,
|
711
|
+
const UNITY_UINT32 num_elements,
|
712
|
+
const char* msg,
|
713
|
+
const UNITY_LINE_TYPE lineNumber,
|
714
|
+
const UNITY_FLAGS_T flags);
|
715
|
+
|
716
|
+
void UnityAssertFloatSpecial(const UNITY_FLOAT actual,
|
717
|
+
const char* msg,
|
718
|
+
const UNITY_LINE_TYPE lineNumber,
|
719
|
+
const UNITY_FLOAT_TRAIT_T style);
|
720
|
+
#endif
|
721
|
+
|
722
|
+
#ifndef UNITY_EXCLUDE_DOUBLE
|
723
|
+
void UnityAssertDoublesWithin(const UNITY_DOUBLE delta,
|
724
|
+
const UNITY_DOUBLE expected,
|
725
|
+
const UNITY_DOUBLE actual,
|
726
|
+
const char* msg,
|
727
|
+
const UNITY_LINE_TYPE lineNumber);
|
728
|
+
|
729
|
+
void UnityAssertDoublesNotWithin(const UNITY_DOUBLE delta,
|
730
|
+
const UNITY_DOUBLE expected,
|
731
|
+
const UNITY_DOUBLE actual,
|
732
|
+
const char* msg,
|
733
|
+
const UNITY_LINE_TYPE lineNumber);
|
734
|
+
|
735
|
+
void UnityAssertGreaterOrLessDouble(const UNITY_DOUBLE threshold,
|
736
|
+
const UNITY_DOUBLE actual,
|
737
|
+
const UNITY_COMPARISON_T compare,
|
738
|
+
const char* msg,
|
739
|
+
const UNITY_LINE_TYPE linenumber);
|
740
|
+
|
741
|
+
void UnityAssertWithinDoubleArray(const UNITY_DOUBLE delta,
|
742
|
+
UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE* expected,
|
743
|
+
UNITY_PTR_ATTRIBUTE const UNITY_DOUBLE* actual,
|
744
|
+
const UNITY_UINT32 num_elements,
|
745
|
+
const char* msg,
|
746
|
+
const UNITY_LINE_TYPE lineNumber,
|
747
|
+
const UNITY_FLAGS_T flags);
|
748
|
+
|
749
|
+
void UnityAssertDoubleSpecial(const UNITY_DOUBLE actual,
|
750
|
+
const char* msg,
|
751
|
+
const UNITY_LINE_TYPE lineNumber,
|
752
|
+
const UNITY_FLOAT_TRAIT_T style);
|
753
|
+
#endif
|
754
|
+
|
755
|
+
/*-------------------------------------------------------
|
756
|
+
* Helpers
|
757
|
+
*-------------------------------------------------------*/
|
758
|
+
|
759
|
+
UNITY_INTERNAL_PTR UnityNumToPtr(const UNITY_INT num, const UNITY_UINT8 size);
|
760
|
+
#ifndef UNITY_EXCLUDE_FLOAT
|
761
|
+
UNITY_INTERNAL_PTR UnityFloatToPtr(const float num);
|
762
|
+
#endif
|
763
|
+
#ifndef UNITY_EXCLUDE_DOUBLE
|
764
|
+
UNITY_INTERNAL_PTR UnityDoubleToPtr(const double num);
|
765
|
+
#endif
|
766
|
+
|
767
|
+
/*-------------------------------------------------------
|
768
|
+
* Error Strings We Might Need
|
769
|
+
*-------------------------------------------------------*/
|
770
|
+
|
771
|
+
extern const char UnityStrOk[];
|
772
|
+
extern const char UnityStrPass[];
|
773
|
+
extern const char UnityStrFail[];
|
774
|
+
extern const char UnityStrIgnore[];
|
775
|
+
|
776
|
+
extern const char UnityStrErrFloat[];
|
777
|
+
extern const char UnityStrErrDouble[];
|
778
|
+
extern const char UnityStrErr64[];
|
779
|
+
extern const char UnityStrErrShorthand[];
|
780
|
+
|
781
|
+
/*-------------------------------------------------------
|
782
|
+
* Test Running Macros
|
783
|
+
*-------------------------------------------------------*/
|
784
|
+
|
785
|
+
#ifdef UNITY_TEST_PROTECT
|
786
|
+
#define TEST_PROTECT() UNITY_TEST_PROTECT()
|
787
|
+
#else
|
788
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
789
|
+
#define TEST_PROTECT() (setjmp(Unity.AbortFrame) == 0)
|
790
|
+
#else
|
791
|
+
#define TEST_PROTECT() 1
|
792
|
+
#endif
|
793
|
+
#endif
|
794
|
+
|
795
|
+
#ifdef UNITY_TEST_ABORT
|
796
|
+
#define TEST_ABORT() UNITY_TEST_ABORT()
|
797
|
+
#else
|
798
|
+
#ifndef UNITY_EXCLUDE_SETJMP_H
|
799
|
+
#define TEST_ABORT() longjmp(Unity.AbortFrame, 1)
|
800
|
+
#else
|
801
|
+
#define TEST_ABORT() return
|
802
|
+
#endif
|
803
|
+
#endif
|
804
|
+
|
805
|
+
/* Automatically enable variadic macros support, if it not enabled before */
|
806
|
+
#ifndef UNITY_SUPPORT_VARIADIC_MACROS
|
807
|
+
#ifdef __STDC_VERSION__
|
808
|
+
#if __STDC_VERSION__ >= 199901L
|
809
|
+
#define UNITY_SUPPORT_VARIADIC_MACROS
|
810
|
+
#endif
|
811
|
+
#endif
|
812
|
+
#endif
|
813
|
+
|
814
|
+
/* This tricky series of macros gives us an optional line argument to treat it as RUN_TEST(func, num=__LINE__) */
|
815
|
+
#ifndef RUN_TEST
|
816
|
+
#ifdef UNITY_SUPPORT_VARIADIC_MACROS
|
817
|
+
#define RUN_TEST(...) RUN_TEST_AT_LINE(__VA_ARGS__, __LINE__, throwaway)
|
818
|
+
#define RUN_TEST_AT_LINE(func, line, ...) UnityDefaultTestRun(func, #func, line)
|
819
|
+
#endif
|
820
|
+
#endif
|
821
|
+
|
822
|
+
/* Enable default macros for masking param tests test cases */
|
823
|
+
#ifdef UNITY_SUPPORT_TEST_CASES
|
824
|
+
#ifdef UNITY_SUPPORT_VARIADIC_MACROS
|
825
|
+
#if !defined(TEST_CASE) && !defined(UNITY_EXCLUDE_TEST_CASE)
|
826
|
+
#define TEST_CASE(...)
|
827
|
+
#endif
|
828
|
+
#if !defined(TEST_RANGE) && !defined(UNITY_EXCLUDE_TEST_RANGE)
|
829
|
+
#define TEST_RANGE(...)
|
830
|
+
#endif
|
831
|
+
#if !defined(TEST_MATRIX) && !defined(UNITY_EXCLUDE_TEST_MATRIX)
|
832
|
+
#define TEST_MATRIX(...)
|
833
|
+
#endif
|
834
|
+
#endif
|
835
|
+
#endif
|
836
|
+
|
837
|
+
/* If we can't do the tricky version, we'll just have to require them to always include the line number */
|
838
|
+
#ifndef RUN_TEST
|
839
|
+
#ifdef CMOCK
|
840
|
+
#define RUN_TEST(func, num) UnityDefaultTestRun(func, #func, num)
|
841
|
+
#else
|
842
|
+
#define RUN_TEST(func) UnityDefaultTestRun(func, #func, __LINE__)
|
843
|
+
#endif
|
844
|
+
#endif
|
845
|
+
|
846
|
+
#define TEST_LINE_NUM (Unity.CurrentTestLineNumber)
|
847
|
+
#define TEST_IS_IGNORED (Unity.CurrentTestIgnored)
|
848
|
+
#define UNITY_NEW_TEST(a) \
|
849
|
+
Unity.CurrentTestName = (a); \
|
850
|
+
Unity.CurrentTestLineNumber = (UNITY_LINE_TYPE)(__LINE__); \
|
851
|
+
Unity.NumberOfTests++;
|
852
|
+
|
853
|
+
#ifndef UNITY_BEGIN
|
854
|
+
#define UNITY_BEGIN() UnityBegin(__FILE__)
|
855
|
+
#endif
|
856
|
+
|
857
|
+
#ifndef UNITY_END
|
858
|
+
#define UNITY_END() UnityEnd()
|
859
|
+
#endif
|
860
|
+
|
861
|
+
#ifndef UNITY_SHORTHAND_AS_INT
|
862
|
+
#ifndef UNITY_SHORTHAND_AS_MEM
|
863
|
+
#ifndef UNITY_SHORTHAND_AS_NONE
|
864
|
+
#ifndef UNITY_SHORTHAND_AS_RAW
|
865
|
+
#define UNITY_SHORTHAND_AS_OLD
|
866
|
+
#endif
|
867
|
+
#endif
|
868
|
+
#endif
|
869
|
+
#endif
|
870
|
+
|
871
|
+
/*-----------------------------------------------
|
872
|
+
* Command Line Argument Support
|
873
|
+
*-----------------------------------------------*/
|
874
|
+
|
875
|
+
#ifdef UNITY_USE_COMMAND_LINE_ARGS
|
876
|
+
int UnityParseOptions(int argc, char** argv);
|
877
|
+
int UnityTestMatches(void);
|
878
|
+
#endif
|
879
|
+
|
880
|
+
/*-------------------------------------------------------
|
881
|
+
* Basic Fail and Ignore
|
882
|
+
*-------------------------------------------------------*/
|
883
|
+
|
884
|
+
#define UNITY_TEST_FAIL(line, message) UnityFail( (message), (UNITY_LINE_TYPE)(line))
|
885
|
+
#define UNITY_TEST_IGNORE(line, message) UnityIgnore( (message), (UNITY_LINE_TYPE)(line))
|
886
|
+
|
887
|
+
/*-------------------------------------------------------
|
888
|
+
* Test Asserts
|
889
|
+
*-------------------------------------------------------*/
|
890
|
+
|
891
|
+
#define UNITY_TEST_ASSERT(condition, line, message) do { if (condition) { /* nothing*/ } else { UNITY_TEST_FAIL((line), (message)); } } while (0)
|
892
|
+
#define UNITY_TEST_ASSERT_NULL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) == NULL), (line), (message))
|
893
|
+
#define UNITY_TEST_ASSERT_NOT_NULL(pointer, line, message) UNITY_TEST_ASSERT(((pointer) != NULL), (line), (message))
|
894
|
+
#define UNITY_TEST_ASSERT_EMPTY(pointer, line, message) UNITY_TEST_ASSERT(((pointer[0]) == 0), (line), (message))
|
895
|
+
#define UNITY_TEST_ASSERT_NOT_EMPTY(pointer, line, message) UNITY_TEST_ASSERT(((pointer[0]) != 0), (line), (message))
|
896
|
+
|
897
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
898
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT8(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
899
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT16(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
900
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT32(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
901
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
902
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT8(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
903
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT16(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
904
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT32(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
905
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX8(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
906
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX16(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT16)(expected), (UNITY_INT)(UNITY_INT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
907
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX32(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT32)(expected), (UNITY_INT)(UNITY_INT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
908
|
+
#define UNITY_TEST_ASSERT_EQUAL_CHAR(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(UNITY_INT8 )(expected), (UNITY_INT)(UNITY_INT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
909
|
+
#define UNITY_TEST_ASSERT_BITS(mask, expected, actual, line, message) UnityAssertBits((UNITY_INT)(mask), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line))
|
910
|
+
|
911
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
912
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
913
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
914
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
915
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
916
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
917
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
918
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
919
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
920
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
921
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
922
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
923
|
+
|
924
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
925
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
926
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
927
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
928
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
929
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
930
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
931
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
932
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
933
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
934
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
935
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
936
|
+
|
937
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
938
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
939
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
940
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
941
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
942
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
943
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
944
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
945
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
946
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
947
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
948
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 )(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
949
|
+
|
950
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
951
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 ) (threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
952
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16) (threshold), (UNITY_INT)(UNITY_INT16) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
953
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32) (threshold), (UNITY_INT)(UNITY_INT32) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
954
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
955
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
956
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
957
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
958
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
959
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
960
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
961
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 ) (threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
962
|
+
|
963
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
964
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
965
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT16)(threshold), (UNITY_INT)(UNITY_INT16) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
966
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT32)(threshold), (UNITY_INT)(UNITY_INT32) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
967
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT) (threshold), (UNITY_INT) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
968
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
969
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
970
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
971
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX8(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT8 )(threshold), (UNITY_INT)(UNITY_UINT8 )(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
972
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX16(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT16)(threshold), (UNITY_INT)(UNITY_UINT16)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
973
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX32(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_UINT32)(threshold), (UNITY_INT)(UNITY_UINT32)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
974
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_CHAR(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(UNITY_INT8 )(threshold), (UNITY_INT)(UNITY_INT8 ) (actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
975
|
+
|
976
|
+
#define UNITY_TEST_ASSERT_INT_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin( (delta), (UNITY_INT) (expected), (UNITY_INT) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT)
|
977
|
+
#define UNITY_TEST_ASSERT_INT8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_INT8 ) (expected), (UNITY_INT)(UNITY_INT8 ) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8)
|
978
|
+
#define UNITY_TEST_ASSERT_INT16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_INT16) (expected), (UNITY_INT)(UNITY_INT16) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16)
|
979
|
+
#define UNITY_TEST_ASSERT_INT32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_INT32) (expected), (UNITY_INT)(UNITY_INT32) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32)
|
980
|
+
#define UNITY_TEST_ASSERT_UINT_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin( (delta), (UNITY_INT) (expected), (UNITY_INT) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT)
|
981
|
+
#define UNITY_TEST_ASSERT_UINT8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8)
|
982
|
+
#define UNITY_TEST_ASSERT_UINT16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16)
|
983
|
+
#define UNITY_TEST_ASSERT_UINT32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32)
|
984
|
+
#define UNITY_TEST_ASSERT_HEX8_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT8 )(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8)
|
985
|
+
#define UNITY_TEST_ASSERT_HEX16_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT16)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT16)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16)
|
986
|
+
#define UNITY_TEST_ASSERT_HEX32_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT32)(delta), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(expected), (UNITY_INT)(UNITY_UINT)(UNITY_UINT32)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32)
|
987
|
+
#define UNITY_TEST_ASSERT_CHAR_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((UNITY_UINT8 )(delta), (UNITY_INT)(UNITY_INT8 ) (expected), (UNITY_INT)(UNITY_INT8 ) (actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR)
|
988
|
+
|
989
|
+
#define UNITY_TEST_ASSERT_INT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin( (delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT, UNITY_ARRAY_TO_ARRAY)
|
990
|
+
#define UNITY_TEST_ASSERT_INT8_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8, UNITY_ARRAY_TO_ARRAY)
|
991
|
+
#define UNITY_TEST_ASSERT_INT16_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT16)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16, UNITY_ARRAY_TO_ARRAY)
|
992
|
+
#define UNITY_TEST_ASSERT_INT32_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT32)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32, UNITY_ARRAY_TO_ARRAY)
|
993
|
+
#define UNITY_TEST_ASSERT_UINT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin( (delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT, UNITY_ARRAY_TO_ARRAY)
|
994
|
+
#define UNITY_TEST_ASSERT_UINT8_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8, UNITY_ARRAY_TO_ARRAY)
|
995
|
+
#define UNITY_TEST_ASSERT_UINT16_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT16)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16, UNITY_ARRAY_TO_ARRAY)
|
996
|
+
#define UNITY_TEST_ASSERT_UINT32_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT32)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32, UNITY_ARRAY_TO_ARRAY)
|
997
|
+
#define UNITY_TEST_ASSERT_HEX8_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8, UNITY_ARRAY_TO_ARRAY)
|
998
|
+
#define UNITY_TEST_ASSERT_HEX16_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT16)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16, UNITY_ARRAY_TO_ARRAY)
|
999
|
+
#define UNITY_TEST_ASSERT_HEX32_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT32)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32, UNITY_ARRAY_TO_ARRAY)
|
1000
|
+
#define UNITY_TEST_ASSERT_CHAR_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT8 )(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), ((UNITY_UINT32)(num_elements)), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR, UNITY_ARRAY_TO_ARRAY)
|
1001
|
+
|
1002
|
+
|
1003
|
+
#define UNITY_TEST_ASSERT_EQUAL_PTR(expected, actual, line, message) UnityAssertEqualNumber((UNITY_PTR_TO_INT)(expected), (UNITY_PTR_TO_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER)
|
1004
|
+
#define UNITY_TEST_ASSERT_EQUAL_STRING(expected, actual, line, message) UnityAssertEqualString((const char*)(expected), (const char*)(actual), (message), (UNITY_LINE_TYPE)(line))
|
1005
|
+
#define UNITY_TEST_ASSERT_EQUAL_STRING_LEN(expected, actual, len, line, message) UnityAssertEqualStringLen((const char*)(expected), (const char*)(actual), (UNITY_UINT32)(len), (message), (UNITY_LINE_TYPE)(line))
|
1006
|
+
#define UNITY_TEST_ASSERT_EQUAL_MEMORY(expected, actual, len, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), 1, (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1007
|
+
|
1008
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT, UNITY_ARRAY_TO_ARRAY)
|
1009
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8, UNITY_ARRAY_TO_ARRAY)
|
1010
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16, UNITY_ARRAY_TO_ARRAY)
|
1011
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32, UNITY_ARRAY_TO_ARRAY)
|
1012
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT, UNITY_ARRAY_TO_ARRAY)
|
1013
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8, UNITY_ARRAY_TO_ARRAY)
|
1014
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16, UNITY_ARRAY_TO_ARRAY)
|
1015
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32, UNITY_ARRAY_TO_ARRAY)
|
1016
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX8_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8, UNITY_ARRAY_TO_ARRAY)
|
1017
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX16_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16, UNITY_ARRAY_TO_ARRAY)
|
1018
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX32_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32, UNITY_ARRAY_TO_ARRAY)
|
1019
|
+
#define UNITY_TEST_ASSERT_EQUAL_PTR_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER, UNITY_ARRAY_TO_ARRAY)
|
1020
|
+
#define UNITY_TEST_ASSERT_EQUAL_STRING_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualStringArray((UNITY_INTERNAL_PTR)(expected), (const char**)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1021
|
+
#define UNITY_TEST_ASSERT_EQUAL_MEMORY_ARRAY(expected, actual, len, num_elements, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1022
|
+
#define UNITY_TEST_ASSERT_EQUAL_CHAR_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR, UNITY_ARRAY_TO_ARRAY)
|
1023
|
+
|
1024
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_INT(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT) (expected), (UNITY_INT_WIDTH / 8)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT, UNITY_ARRAY_TO_VAL)
|
1025
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_INT8(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT8, UNITY_ARRAY_TO_VAL)
|
1026
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_INT16(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT16 )(expected), 2), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT16, UNITY_ARRAY_TO_VAL)
|
1027
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_INT32(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT32 )(expected), 4), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT32, UNITY_ARRAY_TO_VAL)
|
1028
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_UINT(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT) (expected), (UNITY_INT_WIDTH / 8)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT, UNITY_ARRAY_TO_VAL)
|
1029
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_UINT8(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT8, UNITY_ARRAY_TO_VAL)
|
1030
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_UINT16(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT16)(expected), 2), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT16, UNITY_ARRAY_TO_VAL)
|
1031
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_UINT32(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT32)(expected), 4), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT32, UNITY_ARRAY_TO_VAL)
|
1032
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_HEX8(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX8, UNITY_ARRAY_TO_VAL)
|
1033
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_HEX16(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT16 )(expected), 2), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX16, UNITY_ARRAY_TO_VAL)
|
1034
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_HEX32(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT32 )(expected), 4), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX32, UNITY_ARRAY_TO_VAL)
|
1035
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_PTR(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_PTR_TO_INT) (expected), (UNITY_POINTER_WIDTH / 8)), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_POINTER, UNITY_ARRAY_TO_VAL)
|
1036
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_STRING(expected, actual, num_elements, line, message) UnityAssertEqualStringArray((UNITY_INTERNAL_PTR)(expected), (const char**)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
|
1037
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_MEMORY(expected, actual, len, num_elements, line, message) UnityAssertEqualMemory((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(len), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
|
1038
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_CHAR(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT8 )(expected), 1), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_CHAR, UNITY_ARRAY_TO_VAL)
|
1039
|
+
|
1040
|
+
#ifdef UNITY_SUPPORT_64
|
1041
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1042
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1043
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message) UnityAssertEqualNumber((UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1044
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_ARRAY)
|
1045
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_ARRAY)
|
1046
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message) UnityAssertEqualIntArray((UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_ARRAY)
|
1047
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_INT64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_VAL)
|
1048
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_UINT64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_UINT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_VAL)
|
1049
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_HEX64(expected, actual, num_elements, line, message) UnityAssertEqualIntArray(UnityNumToPtr((UNITY_INT)(UNITY_INT64)(expected), 8), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_VAL)
|
1050
|
+
#define UNITY_TEST_ASSERT_INT64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1051
|
+
#define UNITY_TEST_ASSERT_UINT64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1052
|
+
#define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message) UnityAssertNumbersWithin((delta), (UNITY_INT)(expected), (UNITY_INT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1053
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1054
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1055
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_NOT_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1056
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1057
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1058
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1059
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1060
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1061
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1062
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1063
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1064
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1065
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64)
|
1066
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64)
|
1067
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64(threshold, actual, line, message) UnityAssertGreaterOrLessOrEqualNumber((UNITY_INT)(threshold), (UNITY_INT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64)
|
1068
|
+
#define UNITY_TEST_ASSERT_INT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT64)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_INT64, UNITY_ARRAY_TO_ARRAY)
|
1069
|
+
#define UNITY_TEST_ASSERT_UINT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT64)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_UINT64, UNITY_ARRAY_TO_ARRAY)
|
1070
|
+
#define UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertNumbersArrayWithin((UNITY_UINT64)(delta), (UNITY_INTERNAL_PTR)(expected), (UNITY_INTERNAL_PTR)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_DISPLAY_STYLE_HEX64, UNITY_ARRAY_TO_ARRAY)
|
1071
|
+
#else
|
1072
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT64(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1073
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT64(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1074
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX64(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1075
|
+
#define UNITY_TEST_ASSERT_EQUAL_INT64_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1076
|
+
#define UNITY_TEST_ASSERT_EQUAL_UINT64_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1077
|
+
#define UNITY_TEST_ASSERT_EQUAL_HEX64_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1078
|
+
#define UNITY_TEST_ASSERT_INT64_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1079
|
+
#define UNITY_TEST_ASSERT_UINT64_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1080
|
+
#define UNITY_TEST_ASSERT_HEX64_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1081
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1082
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1083
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1084
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1085
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1086
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1087
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1088
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1089
|
+
#define UNITY_TEST_ASSERT_SMALLER_THAN_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1090
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_INT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1091
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_UINT64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1092
|
+
#define UNITY_TEST_ASSERT_SMALLER_OR_EQUAL_HEX64(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1093
|
+
#define UNITY_TEST_ASSERT_INT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1094
|
+
#define UNITY_TEST_ASSERT_UINT64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1095
|
+
#define UNITY_TEST_ASSERT_HEX64_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErr64)
|
1096
|
+
#endif
|
1097
|
+
|
1098
|
+
#ifdef UNITY_EXCLUDE_FLOAT
|
1099
|
+
#define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1100
|
+
#define UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1101
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1102
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1103
|
+
#define UNITY_TEST_ASSERT_FLOAT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1104
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1105
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1106
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1107
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1108
|
+
#define UNITY_TEST_ASSERT_LESS_THAN_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1109
|
+
#define UNITY_TEST_ASSERT_LESS_OR_EQUAL_FLOAT(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1110
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1111
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1112
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1113
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1114
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1115
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1116
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1117
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrFloat)
|
1118
|
+
#else
|
1119
|
+
#define UNITY_TEST_ASSERT_FLOAT_WITHIN(delta, expected, actual, line, message) UnityAssertFloatsWithin((UNITY_FLOAT)(delta), (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line))
|
1120
|
+
#define UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN(delta, expected, actual, line, message) UnityAssertFloatsNotWithin((UNITY_FLOAT)(delta), (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line))
|
1121
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_ASSERT_FLOAT_WITHIN((UNITY_FLOAT)(expected) * (UNITY_FLOAT)UNITY_FLOAT_PRECISION, (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (UNITY_LINE_TYPE)(line), (message))
|
1122
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_FLOAT(expected, actual, line, message) UNITY_TEST_ASSERT_FLOAT_NOT_WITHIN((UNITY_FLOAT)(expected) * (UNITY_FLOAT)UNITY_FLOAT_PRECISION, (UNITY_FLOAT)(expected), (UNITY_FLOAT)(actual), (UNITY_LINE_TYPE)(line), (message))
|
1123
|
+
#define UNITY_TEST_ASSERT_FLOAT_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertWithinFloatArray((UNITY_FLOAT)(delta), (const UNITY_FLOAT*)(expected), (const UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1124
|
+
#define UNITY_TEST_ASSERT_EQUAL_FLOAT_ARRAY(expected, actual, num_elements, line, message) UnityAssertWithinFloatArray((UNITY_FLOAT)0, (const UNITY_FLOAT*)(expected), (const UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1125
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_FLOAT(expected, actual, num_elements, line, message) UnityAssertWithinFloatArray((UNITY_FLOAT)0, UnityFloatToPtr(expected), (const UNITY_FLOAT*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
|
1126
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line))
|
1127
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
|
1128
|
+
#define UNITY_TEST_ASSERT_LESS_THAN_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line))
|
1129
|
+
#define UNITY_TEST_ASSERT_LESS_OR_EQUAL_FLOAT(threshold, actual, line, message) UnityAssertGreaterOrLessFloat((UNITY_FLOAT)(threshold), (UNITY_FLOAT)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
|
1130
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_INF)
|
1131
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NEG_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NEG_INF)
|
1132
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NAN(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NAN)
|
1133
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_DETERMINATE(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_DET)
|
1134
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_INF)
|
1135
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NEG_INF(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NEG_INF)
|
1136
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_NAN(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NAN)
|
1137
|
+
#define UNITY_TEST_ASSERT_FLOAT_IS_NOT_DETERMINATE(actual, line, message) UnityAssertFloatSpecial((UNITY_FLOAT)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_DET)
|
1138
|
+
#endif
|
1139
|
+
|
1140
|
+
#ifdef UNITY_EXCLUDE_DOUBLE
|
1141
|
+
#define UNITY_TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1142
|
+
#define UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN(delta, expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1143
|
+
#define UNITY_TEST_ASSERT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1144
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1145
|
+
#define UNITY_TEST_ASSERT_DOUBLE_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1146
|
+
#define UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1147
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1148
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1149
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1150
|
+
#define UNITY_TEST_ASSERT_LESS_THAN_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1151
|
+
#define UNITY_TEST_ASSERT_LESS_OR_EQUAL_DOUBLE(threshold, actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1152
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1153
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1154
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1155
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1156
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1157
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1158
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1159
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual, line, message) UNITY_TEST_FAIL((UNITY_LINE_TYPE)(line), UnityStrErrDouble)
|
1160
|
+
#else
|
1161
|
+
#define UNITY_TEST_ASSERT_DOUBLE_WITHIN(delta, expected, actual, line, message) UnityAssertDoublesWithin((UNITY_DOUBLE)(delta), (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line))
|
1162
|
+
#define UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN(delta, expected, actual, line, message) UnityAssertDoublesNotWithin((UNITY_DOUBLE)(delta), (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line))
|
1163
|
+
#define UNITY_TEST_ASSERT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_ASSERT_DOUBLE_WITHIN((UNITY_DOUBLE)(expected) * (UNITY_DOUBLE)UNITY_DOUBLE_PRECISION, (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (UNITY_LINE_TYPE)(line), (message))
|
1164
|
+
#define UNITY_TEST_ASSERT_NOT_EQUAL_DOUBLE(expected, actual, line, message) UNITY_TEST_ASSERT_DOUBLE_NOT_WITHIN((UNITY_DOUBLE)(expected) * (UNITY_DOUBLE)UNITY_DOUBLE_PRECISION, (UNITY_DOUBLE)(expected), (UNITY_DOUBLE)(actual), (UNITY_LINE_TYPE)(line), (message))
|
1165
|
+
#define UNITY_TEST_ASSERT_DOUBLE_ARRAY_WITHIN(delta, expected, actual, num_elements, line, message) UnityAssertWithinDoubleArray((UNITY_DOUBLE)(delta), (const UNITY_DOUBLE*)(expected), (const UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1166
|
+
#define UNITY_TEST_ASSERT_EQUAL_DOUBLE_ARRAY(expected, actual, num_elements, line, message) UnityAssertWithinDoubleArray((UNITY_DOUBLE)0, (const UNITY_DOUBLE*)(expected), (const UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_ARRAY)
|
1167
|
+
#define UNITY_TEST_ASSERT_EACH_EQUAL_DOUBLE(expected, actual, num_elements, line, message) UnityAssertWithinDoubleArray((UNITY_DOUBLE)0, UnityDoubleToPtr(expected), (const UNITY_DOUBLE*)(actual), (UNITY_UINT32)(num_elements), (message), (UNITY_LINE_TYPE)(line), UNITY_ARRAY_TO_VAL)
|
1168
|
+
#define UNITY_TEST_ASSERT_GREATER_THAN_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_GREATER_THAN, (message), (UNITY_LINE_TYPE)(line))
|
1169
|
+
#define UNITY_TEST_ASSERT_GREATER_OR_EQUAL_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_GREATER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
|
1170
|
+
#define UNITY_TEST_ASSERT_LESS_THAN_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_SMALLER_THAN, (message), (UNITY_LINE_TYPE)(line))
|
1171
|
+
#define UNITY_TEST_ASSERT_LESS_OR_EQUAL_DOUBLE(threshold, actual, line, message) UnityAssertGreaterOrLessDouble((UNITY_DOUBLE)(threshold), (UNITY_DOUBLE)(actual), UNITY_SMALLER_OR_EQUAL, (message), (UNITY_LINE_TYPE)(line))
|
1172
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_INF)
|
1173
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NEG_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NEG_INF)
|
1174
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NAN(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NAN)
|
1175
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_DETERMINATE(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_DET)
|
1176
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_INF)
|
1177
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NEG_INF(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NEG_INF)
|
1178
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_NAN(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_NAN)
|
1179
|
+
#define UNITY_TEST_ASSERT_DOUBLE_IS_NOT_DETERMINATE(actual, line, message) UnityAssertDoubleSpecial((UNITY_DOUBLE)(actual), (message), (UNITY_LINE_TYPE)(line), UNITY_FLOAT_IS_NOT_DET)
|
1180
|
+
#endif
|
1181
|
+
|
1182
|
+
/* End of UNITY_INTERNALS_H */
|
1183
|
+
#endif
|