-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
32 lines (32 loc) · 1.2 KB
/
phpunit.xml.dist
File metadata and controls
32 lines (32 loc) · 1.2 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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
timeoutForSmallTests="0"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">./Classes</directory>
</include>
<report>
<clover outputFile="Build/Artifacts/Reports/PhpUnit/clover.xml"/>
<crap4j outputFile="Build/Artifacts/Reports/PhpUnit/crap4j.xml"/>
<html outputDirectory="Build/Artifacts/Reports/PhpUnit/Coverage"/>
</report>
</coverage>
<testsuites>
<testsuite name="Unit">
<directory>./Tests/Unit/</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile="Build/Artifacts/Reports/PhpUnit/junit.xml"/>
</logging>
<php>
<ini name="date.timezone" value="Europe/Berlin"/>
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED"/>
</php>
</phpunit>