-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
33 lines (32 loc) · 1.08 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
<?xml version="1.0" encoding="utf-8" ?>
<phpunit colors="true"
bootstrap="Tests/bootstrap.php"
failOnRisky="true"
failOnWarning="true"
stopOnFailure="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuite name="MSFBundle">
<directory>./Tests</directory>
</testsuite>
<php>
<server name="KERNEL_DIR" value="Tests/Fixtures/app/" />
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php" >./</directory>
<exclude>
<directory suffix=".php">./Tests</directory>
<directory suffix=".php">./DependencyInjection</directory>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./Resources</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="coverage" lowUpperBound="10"
highLowerBound="45"/>
</logging>
</phpunit>