26 lines
662 B
XML
Executable file
26 lines
662 B
XML
Executable file
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="./test/test_includes.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="all">
|
|
<directory>./test/</directory>
|
|
</testsuite>
|
|
|
|
<testsuite name="unit">
|
|
<directory>./test/unit/</directory>
|
|
</testsuite>
|
|
|
|
<testsuite name="acceptance">
|
|
<directory>./test/acceptance/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|