2017-05-18 05:58:39 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2020-10-08 16:23:44 +02:00
|
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
|
2017-05-18 05:58:39 +02:00
|
|
|
backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false"
|
|
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Amp Filesystem">
|
|
|
|
<directory>test</directory>
|
2022-09-08 21:30:49 +02:00
|
|
|
<directory suffix=".phpt">test</directory>
|
2017-05-18 05:58:39 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2020-10-08 16:23:44 +02:00
|
|
|
<coverage>
|
|
|
|
<include>
|
2019-09-14 05:04:47 +02:00
|
|
|
<directory suffix=".php">src</directory>
|
2020-10-08 16:23:44 +02:00
|
|
|
</include>
|
|
|
|
</coverage>
|
2017-05-18 05:58:39 +02:00
|
|
|
</phpunit>
|