-
Notifications
You must be signed in to change notification settings - Fork 19
/
phpunit.xml.dist
50 lines (47 loc) · 1.58 KB
/
phpunit.xml.dist
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="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
failOnRisky="true"
failOnWarning="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
verbose="true"
executionOrder="random"
bootstrap="vendor/autoload.php"
>
<!--
The <php> element and its children can be used to configure PHP settings,
constants, and global variables. It can also be used to prepend the include_path.
-->
<php>
<ini name="error_reporting" value="-1"/>
</php>
<!--
This element is the root for one or more <testsuite> elements that are used
to configure the tests that are to be executed.
-->
<testsuites>
<testsuite name="Unit">
<directory>./tests/</directory>
<exclude>./tests/Fixture/</exclude>
<exclude>./tests/EndToEnd/</exclude>
<exclude>./tests/resource/</exclude>
</testsuite>
<testsuite name="End to End">
<directory>./tests/EndToEnd/</directory>
</testsuite>
</testsuites>
<!--
The <filter/whitelist> element and its children can be used to configure
the whitelist for the code coverage reporting
-->
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>