-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
33 lines (33 loc) · 1.2 KB
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
timeoutForSmallTests="0">
<testsuites>
<testsuite name="Unit">
<directory>./Tests/Unit/</directory>
</testsuite>
<testsuite name="Functional">
<directory>./Tests/Functional/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./Classes</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="Build/Artifacts/Reports/PhpUnit/Coverage"/>
<log type="coverage-clover" target="Build/Artifacts/Reports/PhpUnit/clover.xml"/>
<log type="coverage-crap4j" target="Build/Artifacts/Reports/PhpUnit/crap4j.xml"/>
<log type="junit" target="Build/Artifacts/Reports/PhpUnit/junit.xml"/>
</logging>
<php>
<ini name="date.timezone" value="Europe/Berlin"/>
<ini name="error_reporting" value="E_ALL & ~E_DEPRECATED"/>
<env name="FLOW_REWRITEURLS" value="1"/>
</php>
</phpunit>