-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit-functional.xml
More file actions
42 lines (39 loc) · 1.49 KB
/
phpunit-functional.xml
File metadata and controls
42 lines (39 loc) · 1.49 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.5/phpunit.xsd"
bootstrap="Tests/Functional/FunctionalTestsBootstrap.php"
cacheDirectory=".Build/cache/phpunit"
executionOrder="depends,defects"
requireCoverageMetadata="false"
beStrictAboutCoverageMetadata="false"
beStrictAboutOutputDuringTests="true"
displayDetailsOnTestsThatTriggerDeprecations="true"
displayDetailsOnTestsThatTriggerNotices="true"
displayDetailsOnTestsThatTriggerWarnings="true"
displayDetailsOnTestsThatTriggerErrors="true"
failOnRisky="true"
failOnWarning="true"
colors="true">
<testsuites>
<testsuite name="functional">
<directory>Tests/Functional</directory>
</testsuite>
<testsuite name="e2e-backend">
<directory>Tests/E2E/Backend</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">Classes</directory>
</include>
<exclude>
<directory>Classes/Domain/Model</directory>
</exclude>
</source>
<php>
<ini name="display_errors" value="1"/>
<env name="TYPO3_CONTEXT" value="Testing"/>
<!-- TYPO3 Testing Framework database configuration (SQLite) -->
<env name="typo3DatabaseDriver" value="pdo_sqlite"/>
</php>
</phpunit>