2016-09-14 16:27:39 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd"
|
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
>
|
|
|
|
<testsuites>
|
2017-04-15 01:33:10 +02:00
|
|
|
<testsuite name="Postgres Client">
|
2016-09-14 16:27:39 +02:00
|
|
|
<directory>test</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2018-03-27 06:02:35 +02:00
|
|
|
<directory suffix=".php">src</directory>
|
2016-09-14 16:27:39 +02:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2018-03-27 06:02:35 +02:00
|
|
|
</phpunit>
|