forked from xibosignage/xibo-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
29 lines (29 loc) · 988 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
28
29
<phpunit bootstrap="tests/Bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true">
<testsuites>
<testsuite name="Xibo Integration Test Suite">
<directory suffix="Test.php">tests/integration/</directory>
<directory suffix="Test.php">tests/integration/Widget/</directory>
<directory suffix="Test.php">tests/integration/Cache/</directory>
</testsuite>
<testsuite name="Xibo Unit-Test Suite">
<directory suffix="Test.php">tests/Widget/</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>broken</group>
</exclude>
</groups>
<filter>
<whitelist>
<directory>lib</directory>
</whitelist>
</filter>
<logging>
<log type="junit" target="results.xml" logIncompleteSkipped="true"/>
</logging>
</phpunit>