mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-01-16 21:08:34 +01:00
9544e0bf2a
* Test on PHP 8 * Fix tests
25 lines
681 B
XML
25 lines
681 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
verbose="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="DebugBar Test Suite">
|
|
<directory>./tests/DebugBar/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory>./src/DebugBar/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|