-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathphpunit.xml
More file actions
49 lines (49 loc) · 1.46 KB
/
phpunit.xml
File metadata and controls
49 lines (49 loc) · 1.46 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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="true"
bootstrap="Tests/FunctionalTestsBootstrap.php"
cacheResult="false"
colors="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
failOnWarning="true"
executionOrder="random"
processIsolation="true"
>
<coverage>
<report>
<clover outputFile="var/coverage.xml"/>
<html outputDirectory="var/test-coverage/"/>
</report>
</coverage>
<source>
<include>
<directory>Classes</directory>
</include>
</source>
<php>
<const name="TYPO3" value="1"/>
<const name="TYPO3_MODE" value="BE"/>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
<env name="typo3DatabaseName" value="db"/>
<env name="typo3DatabaseHost" value="127.0.0.1"/>
<env name="typo3DatabaseUsername" value="root"/>
<env name="typo3DatabasePassword" value="root"/>
<env name="typo3DatabasePort" value="3306"/>
<env name="TYPO3_PATH_WEB" value=".Build/Web"/>
</php>
<testsuites>
<testsuite name="Functional">
<directory>Tests/Functional/</directory>
<exclude>Tests/Functional/MailLogRepository/AbstractMailLogRepositoryTest.php</exclude>
</testsuite>
</testsuites>
<logging>
<junit outputFile="var/functional-tests.xml"/>
</logging>
</phpunit>