forked from zircote/swagger-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
31 lines (31 loc) · 1.14 KB
/
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
27
28
29
30
31
<phpunit bootstrap="./tests/bootstrap.php"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="false"
convertWarningsToExceptions="true"
stopOnFailure="false"
syntaxCheck="true">
<testsuite name="Swagger Library Test Suite">
<directory>tests/SwaggerTests</directory>
</testsuite>
<logging>
<!--<log type="coverage-text" target="php://stdout"-->
<!--showUncoveredFiles="true"/>-->
<!--<log type="coverage-html" target="/tmp/report" charset="UTF-8"-->
<!--yui="true" highlight="false"-->
<!--lowUpperBound="35" highLowerBound="70"/>-->
<!--<log type="testdox-html" target="/tmp/testdox.html"/>-->
</logging>
<filter>
<blacklist>
<directory suffix=".php">./</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./library/Swagger</directory>
<exclude>
<directory suffix=".phtml">./</directory>
<file>./tests/bootstrap.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>