-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathphpunit.xml
More file actions
17 lines (17 loc) · 784 Bytes
/
phpunit.xml
File metadata and controls
17 lines (17 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit colors="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnError="true" stopOnFailure="true" stopOnIncomplete="false" stopOnSkipped="false" bootstrap="./tests/Bootstrap.php">
<testsuites>
<testsuite name="Tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" lowUpperBound="60" highLowerBound="90" />
<log type="coverage-html" target="build/coverage" lowUpperBound="60" highLowerBound="90" />
</logging>
</phpunit>