Test Runner - Reporters

 

Reporters aid the test runner in sending results in a common format back to the developer's browser for interpretation.

Reporters are configured with the following format:

 

<config>

    ...

    <runner>
       
        ...
       
        <reporters>
            <reporter>
                <type>JSON</type>
            </reporter>
        </reporters>
    </runner>
</config>

 

Currently JSON is the only transfer medium, and the above the only configuration needed for this to function as expected


Related

Source to the JSON Reporter: TestRunner/library/Blerby/TestRunner/Reporter/JSON.php

Source to the base Reporter implementation: TestRunner/library/Blerby/TestRunner/Reporter.php