-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
44 lines (39 loc) · 1.28 KB
/
phpunit.xml
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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=".Build/vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="true"
bootstrap=".Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
displayDetailsOnTestsThatTriggerWarnings="true"
colors="true"
failOnWarning="true"
failOnRisky="true"
timeoutForSmallTests="0"
cacheResult="false"
beStrictAboutTestsThatDoNotTestAnything="false"
>
<testsuites>
<testsuite name="Unit Tests">
<directory>Tests/Unit/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory>Classes</directory>
</include>
</source>
<coverage>
<report>
<clover outputFile=".Build/artifacts/reports/unit/clover.xml"/>
<php outputFile=".Build/artifacts/coverage/unit.cov"/>
<html outputDirectory=".Build/artifacts/coverage/unit"/>
</report>
</coverage>
<logging>
<junit outputFile=".Build/artifacts/reports/unit/phpunit.xml"/>
</logging>
<php>
<ini name="date.timezone" value="Europe/Berlin"/>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
</php>
</phpunit>