-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
27 lines (26 loc) · 892 Bytes
/
phpunit.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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.4/phpunit.xsd"
backupGlobals="true"
cacheTokens="false"
colors="true"
verbose="true"
bootstrap=".Build/vendor/nimut/testing-framework/res/Configuration/UnitTestsBootstrap.php"
>
<testsuites>
<testsuite name="Project Version Unit tests">
<directory suffix=".php">Tests/Unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">Classes/</directory>
<exclude>
<directory suffix=".php">Classes/Facade/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target=".Build/web/typo3temp/logs/clover.xml"/>
</logging>
</phpunit>