Uh oh!
There was an error while loading. Please reload this page.
forked from bpolaszek/webpush-bundle
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
28 lines (28 loc) · 998 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
28 lines (28 loc) · 998 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
28
<?xml version="1.0" encoding="UTF-8"?>
<!-- https://phpunit.de/manual/current/en/appendixes.configuration.html -->
<phpunitxmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
colors="true"
bootstrap="tests/bootstrap.php"
cacheResult="false"
>
<coverage>
<include>
<directory>src</directory>
</include>
</coverage>
<php>
<ininame="error_reporting"value="-1"/>
<envname="KERNEL_CLASS"value="BenTools\WebPushBundle\Tests\Classes\TestKernel"/>
<envname="APP_ENV"value="test"/>
<envname="APP_DEBUG"value="1"/>
<envname="APP_SECRET"value="s$cretf0rt3st"/>
<envname="SHELL_VERBOSITY"value="-1"/>
</php>
<testsuites>
<testsuitename="Project Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>