forked from OxCom/symfony-rollbar-bundle
-
Notifications
You must be signed in to change notification settings - Fork 26
/
phpunit.xml
executable file
·28 lines (28 loc) · 1 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache">
<coverage/>
<php>
<ini name="error_reporting" value="-1"/>
<server name="APP_ENV" value="test" force="true"/>
<server name="KERNEL_DIR" value="Tests/Fixtures/App"/>
<server name="KERNEL_CLASS" value="Tests\Fixtures\App\AppKernel"/>
<server name="SHELL_VERBOSITY" value="-1"/>
<env name="BOOTSTRAP_CLEAR_CACHE_ENV" value="test"/>
<env name="ROLLBAR_TEST_TOKEN" value="ad865e76e7fb496fab096ac07b1dbabb"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory>Tests/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>./</directory>
</include>
</source>
</phpunit>