19 lines
665 B
XML
19 lines
665 B
XML
<?xml version="1.0"?>
|
|
<phpunit backupGlobals="false" backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" syntaxCheck="false" bootstrap="tests/phpunit/bootstrap.php">
|
|
<testsuites>
|
|
<testsuite name="My Test Suite">
|
|
<directory>./tests/phpunit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<listeners>
|
|
<listener class="Civi\Test\CiviTestListener">
|
|
<arguments/>
|
|
</listener>
|
|
</listeners>
|
|
</phpunit>
|