-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
40 lines (36 loc) · 1.42 KB
/
Copy pathphpunit.xml
File metadata and controls
40 lines (36 loc) · 1.42 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.3/phpunit.xsd"
bootstrap="src/autoload.php"
cacheDirectory=".phpunit.cache"
extensionsDirectory="tools/phpunit-extensions"
executionOrder="depends,defects"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
displayDetailsOnAllIssues="true"
failOnAllIssues="true"
colors="true">
<testsuites>
<testsuite name="unit" bootstrap="tests/src/unit/autoload.php">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="integration" bootstrap="tests/src/integration/autoload.php">
<directory>tests/integration</directory>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
<exclude>
<file>src/autoload.php</file>
</exclude>
</source>
<extensions>
<bootstrap class="Ergebnis\PHPUnit\SlowTestDetector\Extension">
<parameter name="maximum-count" value="5"/>
<parameter name="maximum-duration" value="250"/>
</bootstrap>
</extensions>
</phpunit>