1
0
mirror of https://github.com/Intervention/image.git synced 2025-01-17 20:28:21 +01:00
intervention_image/phpunit.xml

25 lines
704 B
XML
Raw Normal View History

2013-02-15 20:01:53 +01:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
2023-06-09 15:59:06 +02:00
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
beStrictAboutTestsThatDoNotTestAnything="false"
2013-02-15 20:01:53 +01:00
>
<testsuites>
<testsuite name="Package Test Suite">
2014-05-10 20:28:08 +02:00
<directory suffix=".php">./tests/</directory>
2013-02-15 20:01:53 +01:00
</testsuite>
</testsuites>
2021-12-22 12:14:27 +01:00
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
2013-02-15 20:01:53 +01:00
</phpunit>