2018-06-29 19:24:35 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-08-28 18:38:03 +02:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
2018-06-29 19:24:35 +02:00
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
2018-07-11 01:36:30 +02:00
|
|
|
bootstrap="vendor/autoload.php"
|
2018-06-29 19:24:35 +02:00
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Amp Sql Client">
|
|
|
|
<directory>test</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2020-08-28 18:38:03 +02:00
|
|
|
<coverage>
|
|
|
|
<include>
|
2018-06-29 19:24:35 +02:00
|
|
|
<directory suffix=".php">src</directory>
|
2020-08-28 18:38:03 +02:00
|
|
|
</include>
|
|
|
|
</coverage>
|
2018-06-29 19:24:35 +02:00
|
|
|
</phpunit>
|