forked from rmrevin/yii2-postman
-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
26 lines (26 loc) · 907 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/unit/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<listeners>
<listener class="\rmrevin\yii\postman\tests\unit\TestListener" file="./tests/unit/TestListener.php"/>
</listeners>
<filter>
<blacklist>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./vendor</directory>
<file suffix=".php">./yii/postman/example.php</file>
</blacklist>
</filter>
<testsuites>
<testsuite name="Test Suite">
<directory>./tests/unit/postman</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="./coverage"/>
</logging>
</phpunit>