-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
32 lines (32 loc) · 1.05 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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/5.6/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true">
<testsuites>
<testsuite name="chainmail">
<file>tests/ChainMailTest.php</file>
</testsuite>
<testsuite name="renderer">
</testsuite>
<testsuite name="sanitizer">
</testsuite>
<testsuite name="section">
</testsuite>
<testsuite name="support">
<file>tests/EmailAddressTest.php</file>
<file>tests/DomainTest.php</file>
</testsuite>
<testsuite name="template">
</testsuite>
<testsuite name="validator">
</testsuite>
<testsuite name="recipients">
<file>tests/RecipientsTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
</phpunit>