31 lines
715 B
XML
31 lines
715 B
XML
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="CA_Config Test Suite">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|
|
<!--
|
|
<phpunit bootstrap="tests/bootstrap.php">
|
|
<php>
|
|
<include>tests</include>
|
|
</php>
|
|
</phpunit>
|
|
|
|
--> |