-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathphpunit-9.6.xml
More file actions
28 lines (27 loc) · 1.12 KB
/
phpunit-9.6.xml
File metadata and controls
28 lines (27 loc) · 1.12 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.5/phpunit.xsd"
bootstrap="vendor/autoload.php"
forceCoversAnnotation="false"
beStrictAboutCoversAnnotation="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTodoAnnotatedTests="true"
cacheResultFile="./report/cache/9.6/.phpunit.result.cache"
verbose="true">
<testsuite name="Time Period Helper Tests">
<directory suffix="Test.php">tests</directory>
</testsuite>
<coverage cacheDirectory="./report/cache/9.6"
includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<html outputDirectory="./report/9.6" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
</phpunit>