-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 1.18 KB
/
phpunit.xml
File metadata and controls
27 lines (27 loc) · 1.18 KB
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
<phpunit
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
verbose="true">
<testsuites>
<testsuite name="Testsuite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<!-- <logging>-->
<!-- <log type="coverage-html" target="/static/report" lowUpperBound="35" highLowerBound="70"/>-->
<!-- <log type="coverage-clover" target="/static/coverage.xml"/>-->
<!-- <log type="coverage-php" target="/static/coverage.serialized"/>-->
<!-- <log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>-->
<!-- <log type="junit" target="/static/logfile.xml" logIncompleteSkipped="false"/>-->
<!-- <!– <log type="testdox-html" target="/static/testdox.html"/>–>-->
<!-- <!– <log type="testdox-text" target="/static/testdox.txt"/>–>-->
<!-- </logging>-->
</phpunit>