forked from Desarrollo-CeSPI/kimkelen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
34 lines (33 loc) · 929 Bytes
/
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
34
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="true"
processIsolation="true"
>
<filter>
<blacklist>
<directory>cache</directory>
<directory>data</directory>
<directory>log</directory>
<directory>lib/vendor</directory>
<directory>plugins</directory>
<directory>web</directory>
</blacklist>
</filter>
<testsuites>
<testsuite name="Unit Tests">
<directory>test/phpunit/unit/</directory>
</testsuite>
<testsuite name="Functional Tests">
<directory>test/phpunit/functional/</directory>
</testsuite>
</testsuites>
<logging>
<log type="junit" target="/tmp/phpunit.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="/var/www/testing.html"/>
</logging>
</phpunit>