forked from OPUS4/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
38 lines (32 loc) · 1.12 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0"?>
<!-- see http://www.phpunit.de/wiki/Documentation -->
<!-- Options copy-pasted from phpUnderControl documentation -->
<phpunit bootstrap="./tests/Bootstrap.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
processIsolation="false"
syntaxCheck="true">
<testsuite name="FrameworkTests">
<directory>./tests</directory>
</testsuite>
<logging>
<log type="junit" target="./build/logs/phpunit.xml" logIncompleteSkipped="true" />
</logging>
<!-- Define directories/files filter for code coverage. -->
<filter>
<!-- Per default, skip all files. -->
<blacklist>
<directory suffix=".php">.</directory>
</blacklist>
<!-- Define directories to include. -->
<whitelist>
<directory suffix=".php">./library/Opus</directory>
<exclude>
<!-- <file>./library/Opus/...</file> -->
</exclude>
</whitelist>
</filter>
</phpunit>