-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
37 lines (34 loc) · 1.18 KB
/
phpunit.xml
File metadata and controls
37 lines (34 loc) · 1.18 KB
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"?>
<phpunit
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.4/phpunit.xsd"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="tests/bootstrap.php"
cacheResult="false"
colors="true"
>
<php>
<server name="APP_ENV" value="test" force="true"/>
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
<env name="KERNEL_CLASS" value="App\Kernel"/>
<env name="REMOTE_ADDR" value="127.0.0.1"/>
<env name="REMOTE_ADDR" value="127.0.0.1"/>
<env name="HTTP_USER_AGENT" value="test"/>
<env name="HTTP_HOST" value="localhost"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory suffix=".php">./tests</directory>
<exclude>./tests/bootstrap.php</exclude>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">src</directory>
</include>
</source>
<!-- ENABLE BETTER OUTPUT FORMATER -->
<extensions>
<bootstrap class="RobinIngelbrecht\PHPUnitPrettyPrint\PhpUnitExtension">
</bootstrap>
</extensions>
</phpunit>