-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
50 lines (44 loc) · 1.25 KB
/
phpunit.xml.dist
File metadata and controls
50 lines (44 loc) · 1.25 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
<?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="vendor/autoload.php"
colors="true"
executionOrder="random"
failOnRisky="true"
failOnWarning="true"
cacheDirectory=".phpunit.cache"
>
<testsuites>
<testsuite name="Maatify Data Adapters">
<directory>tests</directory>
</testsuite>
</testsuites>
<!-- ========================== -->
<!-- Source Directories -->
<!-- ========================== -->
<source>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<directory>vendor</directory>
</exclude>
</source>
<!-- ========================== -->
<!-- Coverage Reports -->
<!-- ========================== -->
<coverage>
<report>
<text outputFile="php://stdout"/>
</report>
</coverage>
<!-- ========================== -->
<!-- PHP Runtime -->
<!-- ========================== -->
<php>
<!-- No env, no IO, deterministic tests -->
<ini name="zend.assertions" value="1"/>
<ini name="assert.exception" value="1"/>
</php>
</phpunit>