forked from synapsestudios/synapse-base
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
25 lines (25 loc) · 760 Bytes
/
phpunit.xml
File metadata and controls
25 lines (25 loc) · 760 Bytes
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
<phpunit colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
syntaxCheck="false"
coverageHtml="./report"
strict="true"
verbose="true"
bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Synapse">
<directory>tests/Test/Synapse</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./phpunit-coverage" highlight="true"
lowUpperBound="33" highLowerBound="66" />
</logging>
</phpunit>