1
0
mirror of https://github.com/danog/file.git synced 2025-01-22 21:31:15 +01:00
file/phpunit.xml.dist

26 lines
784 B
Plaintext
Raw Normal View History

2017-05-17 22:58:39 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2020-10-08 09:23:44 -05:00
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
2017-05-17 22:58:39 -05: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>
</testsuite>
</testsuites>
2020-10-08 09:23:44 -05:00
<coverage>
<include>
2019-09-13 22:04:47 -05:00
<directory suffix=".php">src</directory>
2020-10-08 09:23:44 -05:00
</include>
</coverage>
2017-05-17 22:58:39 -05:00
</phpunit>