forked from phayes/geoPHP
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathphpunit.xml.dist
28 lines (28 loc) · 946 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
convertErrorsToExceptions="false"
convertNoticesToExceptions="false"
convertWarningsToExceptions="false"
colors="true"
syntaxCheck="false"
verbose="true"
printerClass="PHPUnit_TextUI_ResultPrinter"
bootstrap="tests/bootstrap.php">
<php>
<env name="GEOPHP_PG_HOST" value="127.0.0.1"/>
<env name="GEOPHP_PG_PORT" value="5432"/>
<env name="GEOPHP_PG_DATABASE" value="geophp"/>
<env name="GEOPHP_PG_USER" value="postgres"/>
<env name="GEOPHP_PG_PASSWORD" value="postgres"/>
</php>
<testsuites>
<testsuite name="GeoPHP Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>