forked from andersundsehr/mail_logger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
39 lines (39 loc) · 1.17 KB
/
phpunit.xml
File metadata and controls
39 lines (39 loc) · 1.17 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
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="vendor/nimut/testing-framework/res/Configuration/FunctionalTestsBootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
verbose="false"
>
<php>
<env name="typo3DatabaseName" value="typo3_test"/>
<env name="typo3DatabaseHost" value="localhost"/>
<env name="typo3DatabaseUsername" value="root"/>
<env name="typo3DatabasePassword" value=""/>
<env name="typo3DatabasePort" value="3306"/>
<env name="TYPO3_PATH_WEB" value=".Build/Web"/>
</php>
<testsuites>
<testsuite name="Functional">
<directory>Tests/Functional/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">Classes/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target=".Build/coverage.xml"/>
<log type="junit" target=".Build/functional-tests.xml" />
<log type="coverage-html" target=".Build/test-coverage/" />
</logging>
</phpunit>