-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
24 lines (24 loc) · 928 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./framework/bootstrap.php"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="true">
<testsuites>
<testsuite name="All Tests">
<directory suffix="Test.php">testsuite/</directory>
</testsuite>
</testsuites>
<logging>
<log type="json" target="./var/logs/logfile.json"/>
<log type="tap" target="./var/logs/logfile.tap"/>
<log type="junit" target="./var/logs/logfile.xml" logIncompleteSkipped="false"/>
<log type="testdox-html" target="./var/logs/testdox.html"/>
<log type="testdox-text" target="./var/logs/testdox.txt"/>
</logging>
</phpunit>