41 lines
1.2 KiB
XML
41 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<phpunit
|
||
|
colors="true"
|
||
|
stopOnFailure="false"
|
||
|
bootstrap="bootstrap.php">
|
||
|
<php>
|
||
|
<server name="SERVER_NAME" value="http://example.com" />
|
||
|
<server name="REMOTE_ADDR" value="127.0.0.1" />
|
||
|
<server name="HTTP_USER_AGENT" value="PHPUnit" />
|
||
|
</php>
|
||
|
<filter>
|
||
|
<blacklist>
|
||
|
<directory suffix=".php">../application/third_party</directory>
|
||
|
<directory suffix=".php">../application/config</directory>
|
||
|
<directory suffix=".php">../application/views</directory>
|
||
|
<directory suffix=".php">../system</directory>
|
||
|
<directory suffix=".php">.</directory>
|
||
|
</blacklist>
|
||
|
</filter>
|
||
|
<testsuites>
|
||
|
<testsuite name="ControllerTests">
|
||
|
<directory suffix=".php">controllers</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="ExtensionTests">
|
||
|
<directory suffix=".php">core</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="HelperTests">
|
||
|
<directory suffix=".php">helpers</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="LibTests">
|
||
|
<directory suffix=".php">libs</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="ModelTests">
|
||
|
<directory suffix=".php">models</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="SystemTests">
|
||
|
<directory suffix=".php">system</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
</phpunit>
|