25 lines
691 B
XML
25 lines
691 B
XML
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
bootstrap="tests/phpunit/bootstrap.php"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="CiviCRM-Drupal Test Suite">
|
|
<directory>./tests/phpunit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./CiviDrupal</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|