-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
50 lines (50 loc) · 2.08 KB
/
phpunit.xml
File metadata and controls
50 lines (50 loc) · 2.08 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="true"
>
<testsuites>
<testsuite name="date">
<file>./tests/DateTime/Converting.php</file>
<file>./tests/DateTime/Copying.php</file>
<file>./tests/DateTime/Creating.php</file>
<file>./tests/DateTime/Modifying.php</file>
<file>./tests/DateTime/Reading.php</file>
</testsuite>
<testsuite name="interval">
<file>./tests/DateInterval/Converting.php</file>
<file>./tests/DateInterval/Copying.php</file>
<file>./tests/DateInterval/Creating.php</file>
<file>./tests/DateInterval/Inverting.php</file>
<file>./tests/DateInterval/Modifying.php</file>
<file>./tests/DateInterval/Optimising.php</file>
<file>./tests/DateInterval/Reading.php</file>
<file>./tests/DateInterval/Spec.php</file>
</testsuite>
<testsuite name="period">
<file>./tests/DatePeriod/Converting.php</file>
<file>./tests/DatePeriod/Copying.php</file>
<file>./tests/DatePeriod/Creating.php</file>
<file>./tests/DatePeriod/Reading.php</file>
</testsuite>
<testsuite name="timezone">
<file>./tests/DateTimeZone/Comparisons.php</file>
<file>./tests/DateTimeZone/Copying.php</file>
<file>./tests/DateTimeZone/Creating.php</file>
<file>./tests/DateTimeZone/Reading.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="coverage" lowUpperBound="50" highLowerBound="90"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
</logging>
</phpunit>