-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathphpunit.xml.dist
37 lines (35 loc) · 1.33 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<!--bootstrap="tests/bootstrap.php"-->
<!-- phpunit.xml.dist -->
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/6.1/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
verbose="true"
stopOnFailure="false"
syntaxCheck="true"
>
<php>
<ini name="error_reporting" value="-1" />
<env name="KERNEL_CLASS" value="Onurb\Bundle\ExcelBundle\FakeAppKernel"></env>
<env name="APP_ENV" value="test" />
<env name="APP_DEBUG" value="1" />
<env name="APP_SECRET" value="s$cretf0rt3st" />
<env name="SHELL_VERBOSITY" value="-1" />
</php>
<testsuites>
<testsuite name="ExcelBundle Test Suite">
<directory suffix="Test.php">./tests/ExcelBundleTests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib/ExcelBundle</directory>
</whitelist>
</filter>
</phpunit>