21 lines
493 B
XML
21 lines
493 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit>
|
|
<testsuites>
|
|
<!--
|
|
Unit testing
|
|
-->
|
|
<testsuite name="unit">
|
|
<directory>application/</directory>
|
|
<directory>bin/</directory>
|
|
<directory>library/</directory>
|
|
</testsuite>
|
|
|
|
<!--
|
|
Regression testing
|
|
-->
|
|
<testsuite name="regression">
|
|
<directory>regression/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|