-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
41 lines (36 loc) · 1.44 KB
/
phpunit.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
bootstrap="vendor/autoload.php"
backupGlobals="false"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
verbose="true">
<php>
<ini name="error_reporting" value="-1"/>
<server name="KERNEL_DIR" value="./Tests"/>
</php>
<testsuite>
<directory suffix="Test.php">Tests</directory>
</testsuite>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">.</directory>
<exclude>
<directory>./Tests</directory>
<directory>./vendor</directory>
<file>./DependencyInjection/Configuration.php</file>
<file>./DependencyInjection/DeclineTransformatExtension.php</file>
<file>./DeclineTransformatBundle.php</file>
</exclude>
</whitelist>
</filter>
<!--<logging>-->
<!--<log type="coverage-html" target="./Tests/Coverage" lowUpperBound="35" highLowerBound="70"/>-->
<!--</logging>-->
<listeners>
<listener class="Decline\TransformatBundle\Tests\CleanupListener"/>
</listeners>
</phpunit>