-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (26 loc) · 742 Bytes
/
phpunit.xml
File metadata and controls
27 lines (26 loc) · 742 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
26
27
<?xml version="1.0"?>
<phpunit
bootstrap="./tests/Bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertWarningsToExceptions="true"
convertNoticesToExceptions="true"
verbose="true"
stopOnFailure="false"
processIsolation="false"
backupGlobals="false"
syntaxCheck="true"
>
<testsuite name="Soflomo\Mail tests">
<directory>./tests/</directory>
</testsuite>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<file>./Module.php</file>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./tests/build/logs/clover.xml"/>
</logging>
</phpunit>