mirror of
https://0xacab.org/radar/radar-wp.git
synced 2024-12-23 17:16:31 +01:00
30 lines
916 B
Text
30 lines
916 B
Text
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
||
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
|
||
|
backupGlobals="false"
|
||
|
colors="true"
|
||
|
bootstrap="vendor/autoload.php"
|
||
|
>
|
||
|
<php>
|
||
|
<!-- Silence E_USER_DEPRECATED (-16385 == -1 & ~E_USER_DEPRECATED) -->
|
||
|
<ini name="error_reporting" value="-16385"/>
|
||
|
</php>
|
||
|
<testsuites>
|
||
|
<testsuite name="Symfony EventDispatcher Component Test Suite">
|
||
|
<directory>./Tests/</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory>./</directory>
|
||
|
<exclude>
|
||
|
<directory>./Resources</directory>
|
||
|
<directory>./Tests</directory>
|
||
|
<directory>./vendor</directory>
|
||
|
</exclude>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|