-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
55 lines (50 loc) · 1.65 KB
/
phpunit.xml.dist
File metadata and controls
55 lines (50 loc) · 1.65 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.5/phpunit.xsd"
bootstrap="tests/bootstrap.php"
colors="true"
executionOrder="random"
failOnRisky="true"
failOnWarning="true"
cacheDirectory=".phpunit.cache"
>
<testsuites>
<testsuite name="All">
<directory>tests/Config</directory>
<directory>tests/DTO</directory>
<directory>tests/Drivers</directory>
<directory>tests/Enum</directory>
<directory>tests/Identifier</directory>
<directory>tests/Resolver</directory>
<directory>tests/IntegrationV2</directory>
<directory>tests/Phase4</directory>
<directory>tests/Phase5</directory>
<directory>tests/Coverage</directory>
</testsuite>
</testsuites>
<!-- ========================== -->
<!-- Source Directories -->
<!-- ========================== -->
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
</exclude>
</source>
<!-- ========================== -->
<!-- Coverage -->
<!-- ========================== -->
<coverage>
<report>
<clover outputFile="coverage.xml"/>
<html outputDirectory="coverage"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<php>
<env name="APP_ENV" value="testing"/>
</php>
</phpunit>