forked from Mutirao/novosalic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
24 lines (24 loc) · 908 Bytes
/
phpunit.xml
File metadata and controls
24 lines (24 loc) · 908 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/Bootstrap.php" backupGlobals="false"
backupStaticAttributes="false" colors="true" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertWarningsToExceptions="true"
processIsolation="false" stopOnFailure="false" syntaxCheck="false">
<testsuites>
<testsuite name="Salic">
<directory suffix=".php">tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor</directory>
<directory suffix=".php">library</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage" title="Portal Coverage"
charset="UTF-8" yui="true" highlight="true" />
<log type="coverage-clover" target="build/logs/clover.xml" />
<log type="junit" target="build/logs/junit.xml"
logIncompleteSkipped="false" />
</logging>
</phpunit>