This repository has been archived by the owner on Aug 5, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
48 lines (48 loc) · 1.68 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
39
40
41
42
43
44
45
46
47
48
<?xml version="1.0" encoding="UTF-8"?>
<!--
* This file is part of Saft.
*
* (c) Konrad Abicht <[email protected]>
* (c) Natanael Arndt <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
bootstrap="Test/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
verbose="true"
>
<php>
<ini name="error_reporting" value="-1" />
<ini name="intl.error_level" value="0" />
<ini name="display_errors" value="On"/>
</php>
<!-- Define wich test cases should be executed -->
<testsuites>
<testsuite name="Saft-Addition-Virtuoso">
<directory suffix="Test.php">./Test</directory>
</testsuite>
</testsuites>
<!-- Enable Code Coverage report -->
<logging>
<log type="coverage-html" target="gen/coverage/" title="Saft" />
<log type="junit" target="gen/test/log.junit.xml" logIncompleteSkipped="true" />
<log type="testdox-html" target="gen/test/testdox.html" />
</logging>
<!-- Define which files are included in the code coverage report -->
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./Store</directory>
</whitelist>
</filter>
</phpunit>