-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
23 lines (23 loc) · 812 Bytes
/
Copy pathphpunit.xml.dist
File metadata and controls
23 lines (23 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd"
bootstrap=".tools/bootstrap.php"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
failOnWarning="true"
failOnRisky="true"
verbose="true"
colors="true"
stderr="true"
defaultTestSuite="api">
<php>
<ini name="error_reporting" value="E_ALL"/>
<ini name="display_errors" value="1"/>
</php>
<testsuites>
<testsuite name="api">
<directory suffix="_test.php">tests/api</directory>
</testsuite>
</testsuites>
</phpunit>