-
Notifications
You must be signed in to change notification settings - Fork 22
/
phpunit.functional.xml
30 lines (29 loc) · 1.25 KB
/
phpunit.functional.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
27
28
29
30
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd"
bootstrap="Tests/Functional/FunctionalTestsBootstrap.php"
cacheDirectory=".project/temp/.phpunit.functional.cache"
executionOrder="depends,defects"
beStrictAboutCoverageMetadata="true"
beStrictAboutOutputDuringTests="true"
backupGlobals="true"
failOnRisky="true"
failOnWarning="true"
controlGarbageCollector="true">
<logging>
<junit outputFile=".project/artifacts/functionaltests/junit.xml"/>
<teamcity outputFile=".project/artifacts/functionaltests/teamcity.txt"/>
<testdoxHtml outputFile=".project/artifacts/functionaltests/testdox.html"/>
<testdoxText outputFile=".project/artifacts/functionaltests/testdox.txt"/>
</logging>
<testsuites>
<testsuite name="Functional">
<directory>Tests/Functional/</directory>
</testsuite>
</testsuites>
<source restrictDeprecations="true" restrictNotices="true" restrictWarnings="true">
<include>
<directory>Classes</directory>
</include>
</source>
</phpunit>