Test Runner - Samples - Basic Manual Sample
This sample covers the most basic configuration available.
The following specifies that tests in /usr/dev/simple/tests/ will be run manually using the SimpleTest runner.
<?xml version="1.0" encoding="ISO-8859-1"?>
<config>
<scanners>
<scanner>
<type>Manual</type>
<options>
<path>/usr/dev/simple/tests/</path>
</options>
</scanner>
</scanners>
<runner>
<type>SimpleTest</type>
<options>
<suite>
<path>/usr/share/php/simpletest/</path>
</suite>
</options>
<reporters>
<reporter>
<type>JSON</type>
</reporter>
</reporters>
</runner>
</config>
Note: Due to the lack of any filters on the scanner, all files in /usr/dev/simple/tests will be retrieved/displayed regardless of their extension.