-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
36 lines (33 loc) · 1.11 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
29
30
31
32
33
34
35
36
<?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="KERNEL_CLASS" value="App\Kernel"/>
<env name="REMOTE_ADDR" value="127.0.0.1"/>
<env name="HTTP_USER_AGENT" value="test"/>
<env name="HTTP_HOST" value="127.0.0.1"/>
</php>
<testsuites>
<testsuite name="Project Test Suite">
<directory suffix=".php">./tests</directory>
<exclude>./tests/bootstrap.php</exclude>
<exclude>./tests/CustomTestCase.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>