forked from CondeNastDigitalRU/BasicApiBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 866 Bytes
/
phpunit.xml
File metadata and controls
27 lines (27 loc) · 866 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/bootstrap.php"
verbose="true"
>
<php>
<env name="APP_ENV" value="test" force="true" />
<env name="KERNEL_CLASS" value="Condenast\BasicApiBundle\Tests\Fixtures\App\Kernel" />
<env name="SYMFONY_DEPRECATIONS_HELPER" value="max[total]=2" />
<env name="SHELL_VERBOSITY" value="-1" />
</php>
<testsuites>
<testsuite name="Functional">
<directory>tests/Functional</directory>
</testsuite>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" />
</logging>
</phpunit>