forked from phpWhois/phpWhois
-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml.dist
32 lines (32 loc) · 1.06 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
verbose="true">
<testsuites>
<testsuite name="phpWhois Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
<file>./phpwhois</file>
<exclude>
<directory suffix=".php">./src/old</directory>
<file>./whois.parser.php</file>
<file>./whois.servers.php</file>
<file>./Whois_Old.php</file>
<file>./WhoisClient.php</file>
<file>./phpwhois</file>
</exclude>
</whitelist>
<blacklist>
<directory>./vendor</directory>
<directory>./tests</directory>
</blacklist>
</filter>
</phpunit>