-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
21 lines (18 loc) · 604 Bytes
/
phpunit.xml
File metadata and controls
21 lines (18 loc) · 604 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerErrors="true"
beStrictAboutOutputDuringTests="false"
beStrictAboutChangesToGlobalState="true"
failOnWarning="true"
failOnRisky="false"
>
<testsuites>
<testsuite name="Podsumer Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>