forked from DarkaOnLine/SwaggerLume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
33 lines (33 loc) · 1.28 KB
/
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
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuite name="SwaggerLume TestSuite">
<directory>tests/</directory>
</testsuite>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./tests/storage/logs/test-reports" charset="UTF-8"
yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80" />
<log type="coverage-clover" target="./tests/storage/logs/test-reports/clover.xml"/>
<log type="coverage-php" target="./tests/storage/logs/test-reports/coverage.cov"/>
<log type="junit" target="./tests/storage/logs/test-reports/junit.xml" logIncompleteSkipped="false"/>
</logging>
<php>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>