forked from traderinteractive/GeoIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
34 lines (29 loc) · 1.12 KB
/
phpunit.xml.dist
File metadata and controls
34 lines (29 loc) · 1.12 KB
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
33
34
<?xml version="1.0" encoding="UTF-8"?>
<phpunit strict="false"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./tests/bootstrap.php">
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false" />
</logging>
<testsuites>
<testsuite name="GeoIP Acceptance Test Suite">
<directory suffix="Test.php" phpVersion="5.4.0" phpVersionOperator=">=">./tests/GeoIP/Acceptance</directory>
</testsuite>
<testsuite name="GeoIP Unit Test Suite">
<directory suffix="Test.php" phpVersion="5.4.0" phpVersionOperator=">=">./tests/GeoIP/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/library</directory>
</whitelist>
</filter>
</phpunit>