1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
|
3
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
4
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
|
5
|
backupGlobals="false"
|
6
|
colors="true"
|
7
|
bootstrap="vendor/autoload.php"
|
8
|
>
|
9
|
<php>
|
10
|
<ini name="error_reporting" value="-1" />
|
11
|
</php>
|
12
|
|
13
|
<testsuites>
|
14
|
<testsuite name="Symfony Console Component Test Suite">
|
15
|
<directory>./Tests/</directory>
|
16
|
</testsuite>
|
17
|
</testsuites>
|
18
|
|
19
|
<filter>
|
20
|
<whitelist>
|
21
|
<directory>./</directory>
|
22
|
<exclude>
|
23
|
<directory>./Resources</directory>
|
24
|
<directory>./Tests</directory>
|
25
|
<directory>./vendor</directory>
|
26
|
</exclude>
|
27
|
</whitelist>
|
28
|
</filter>
|
29
|
|
30
|
<listeners>
|
31
|
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
|
32
|
<arguments>
|
33
|
<array>
|
34
|
<element key="time-sensitive"><string>Symfony\Component\Console</string></element>
|
35
|
</array>
|
36
|
</arguments>
|
37
|
</listener>
|
38
|
</listeners>
|
39
|
</phpunit>
|