-
Notifications
You must be signed in to change notification settings - Fork 274
Expand file tree
/
Copy pathphpunit.xml
More file actions
44 lines (42 loc) · 1.6 KB
/
phpunit.xml
File metadata and controls
44 lines (42 loc) · 1.6 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.4/phpunit.xsd"
bootstrap="tests/test_helper.php"
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
beStrictAboutTestsThatDoNotTestAnything="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerErrors="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnPhpunitDeprecations="true"
displayDetailsOnAllIssues="true">
<source ignoreIndirectDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory suffix=".php">./lib</directory>
</include>
<exclude>
<file>./lib/Utils/TaskRunner/Executor.php</file>
<file>./lib/View/fileupload/index.php</file>
<file>./lib/View/APIDoc.php</file>
<file>./lib/View/templates/_APIDoc.php</file>
</exclude>
</source>
<coverage
pathCoverage="true"
ignoreDeprecatedCodeUnits="true">
</coverage>
<php>
<includePath>tests/TestHelpers</includePath>
</php>
<testsuites>
<testsuite name="Matecat Unit tests">
<directory>tests/unit</directory>
</testsuite>
<testsuite name="Plugins Unit tests">
<directory>plugins/*/tests/unit</directory>
</testsuite>
</testsuites>
</phpunit>