1
0
mirror of https://github.com/danog/file.git synced 2024-11-26 20:04:51 +01:00
file/phpunit.xml.dist

27 lines
839 B
Plaintext
Raw Normal View History

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>
<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>