Prints to the console ($stdout) simple, readable test suite results.
This plugin is intended to be the default option for formatting a test suite's results when displayed at the console. It collects raw test results from the individual test executables of your test suite and presents them in a more readable summary form.
Enable the plugin in your project.yml by adding report_tests_pretty_stdout
to
the list of enabled plugins instead of any other report_tests_*_stdout
plugin.
:plugins:
:enabled:
- report_tests_pretty_stdout
No additional configuration is needed once the plugin is enabled.
> ceedling test:Model
-------------------
FAILED TEST SUMMARY
-------------------
[test/TestModel.c]
Test: testInitShouldCallSchedulerAndTemperatureFilterInit
At line (21): "Function TaskScheduler_Init() called more times than expected."
--------------------
OVERALL TEST SUMMARY
--------------------
TESTED: 1
PASSED: 0
FAILED: 1
IGNORED: 0
---------------------
BUILD FAILURE SUMMARY
---------------------
Unit test failures.