-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
26 lines (26 loc) · 925 Bytes
/
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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="true"
bootstrap=".Build/vendor/typo3/testing-framework/Resources/Core/Build/UnitTestsBootstrap.php"
colors="true"
xsi:noNamespaceSchemaLocation=".Build/vendor/phpunit/phpunit/phpunit.xsd"
>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">Classes</directory>
</include>
<report>
<clover outputFile=".Build/log/coverage/clover.xml"/>
<html outputDirectory=".Build/log/coverage/html/"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<testsuites>
<testsuite name="unit">
<directory>Tests/Unit</directory>
</testsuite>
</testsuites>
<logging>
<junit outputFile=".Build/log/coverage/junit.xml"/>
</logging>
</phpunit>