forked from tom--/yii2-dynamic-ar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
23 lines (23 loc) · 834 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
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/unit/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<testsuites>
<testsuite name="unit">
<directory>./tests/unit</directory>
</testsuite>
</testsuites>
<logging>
<!--
<log type="coverage-html" target="./tests/log/coverage.html"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="json" target="./tests/log/logfile.json"/>
<log type="tap" target="./tests/log/logfile.tap"/>
<log type="testdox-html" target="./tests/log/testdox.html"/>
<log type="testdox-text" target="./tests/log/testdox.txt"/>
-->
</logging>
</phpunit>