-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
48 lines (47 loc) · 1.79 KB
/
phpunit.xml.dist
File metadata and controls
48 lines (47 loc) · 1.79 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
bootstrap="vendor/autoload.php"
cacheDirectory=".cache/phpunit"
colors="true"
defaultTestSuite="default"
displayDetailsOnAllIssues="true"
executionOrder="depends,defects"
failOnPhpunitDeprecation="true"
failOnRisky="true"
failOnWarning="true"
requireCoverageMetadata="true">
<testsuites>
<testsuite name="default">
<directory groups="unit">tests/unit</directory>
<directory groups="integration">tests/integration</directory>
<directory groups="fixture">tests/fixture</directory>
</testsuite>
<testsuite name="e2e">
<directory groups="e2e">tests/e2e</directory>
</testsuite>
<testsuite name="full">
<directory groups="unit">tests/unit</directory>
<directory groups="integration">tests/integration</directory>
<directory groups="fixture">tests/fixture</directory>
<directory groups="e2e">tests/e2e</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<!-- Uncomment the below line whenever you need an HTML report -->
<!-- <html outputDirectory=".cache/coverage-report"/>-->
<text outputFile="php://stdout" showOnlySummary="true"/>
</report>
</coverage>
<source ignoreIndirectDeprecations="true"
restrictNotices="true"
restrictWarnings="true">
<include>
<directory>src</directory>
<directory>tests/fixture</directory>
</include>
</source>
</phpunit>