1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-17 05:18:32 +01:00
php-debugbar/phpunit.xml.dist

25 lines
681 B
Plaintext
Raw Permalink Normal View History

2013-06-08 01:32:10 +07:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
2014-10-27 16:08:39 +00:00
bootstrap="tests/bootstrap.php"
2013-06-08 01:32:10 +07:00
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
2014-10-27 16:08:39 +00:00
verbose="true"
2013-06-08 01:32:10 +07:00
>
<testsuites>
<testsuite name="DebugBar Test Suite">
<directory>./tests/DebugBar/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/DebugBar/</directory>
</whitelist>
</filter>
</phpunit>