-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.dist.xml
More file actions
57 lines (49 loc) · 1.75 KB
/
phpunit.dist.xml
File metadata and controls
57 lines (49 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
cacheDirectory=".phpunit.cache"
executionOrder="depends,defects"
requireCoverageMetadata="true"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnPhpunitNotices="true"
failOnPhpunitDeprecation="true"
failOnRisky="true"
failOnWarning="true"
colors="true"
testdox="true"
>
<testsuites>
<testsuite name="base">
<directory>test/Base</directory>
</testsuite>
<testsuite name="content">
<directory>test/Content</directory>
</testsuite>
<testsuite name="marketplace">
<directory>test/Marketplace</directory>
</testsuite>
<testsuite name="media">
<directory>test/Media</directory>
</testsuite>
<testsuite name="site">
<directory>test/Site</directory>
</testsuite>
<testsuite name="authentication">
<directory>test/User/Authentication</directory>
</testsuite>
<testsuite name="authorization">
<directory>test/User/Authorization</directory>
</testsuite>
<testsuite name="identity">
<directory>test/User/Identity</directory>
</testsuite>
</testsuites>
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>src</directory>
</include>
</source>
</phpunit>