-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathphpunit.functional.xml.dist
More file actions
29 lines (29 loc) · 1020 Bytes
/
Copy pathphpunit.functional.xml.dist
File metadata and controls
29 lines (29 loc) · 1020 Bytes
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
<?xml version="1.0"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=".Build/vendor/phpunit/phpunit/phpunit.xsd"
bootstrap=".Build/vendor/typo3/testing-framework/Resources/Core/Build/FunctionalTestsBootstrap.php"
cacheDirectory=".phpunit.cache"
beStrictAboutTestsThatDoNotTestAnything="false"
failOnWarning="true"
failOnRisky="true"
colors="true"
>
<testsuites>
<testsuite name="lux functional tests">
<directory>Tests/Functional/</directory>
</testsuite>
</testsuites>
<source>
<include>
<directory suffix=".php">Classes/</directory>
</include>
</source>
<php>
<env name="typo3DatabaseDriver" value="mysqli"/>
<env name="typo3DatabaseHost" value="mysql"/>
<env name="typo3DatabaseUsername" value="root"/>
<env name="typo3DatabasePassword" value="root"/>
<env name="typo3DatabaseName" value="typo3_ft"/>
</php>
</phpunit>