-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathphpunit-controller-coverage.xml
More file actions
31 lines (29 loc) · 1.27 KB
/
Copy pathphpunit-controller-coverage.xml
File metadata and controls
31 lines (29 loc) · 1.27 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
<?xml version="1.0"?>
<!-- Controller-scoped coverage config for the controller-coverage-afterconstruct plan.
Source include limited to lib/Controller so coverage runs are fast and the
aggregate-coverage gate is computed over the in-scope set. Committed artifact
(stable path, unlike a job-ephemeral tmp dir). Paths relative to repo root. -->
<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="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
beStrictAboutTestsThatDoNotTestAnything="false">
<source ignoreIndirectDeprecations="true" restrictNotices="false" restrictWarnings="false">
<include>
<directory suffix=".php">./lib/Controller</directory>
</include>
</source>
<coverage pathCoverage="false" ignoreDeprecatedCodeUnits="true"/>
<php>
<includePath>tests/unit/TestHelpers</includePath>
</php>
<testsuites>
<testsuite name="Matecat Unit tests">
<directory>tests/unit</directory>
<exclude>tests/unit/TestHelpers</exclude>
</testsuite>
</testsuites>
</phpunit>