30 lines
1.1 KiB
XML
30 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
bootstrap="../vendor/autoload.php"
|
|
colors="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
processIsolation="false"
|
|
stopOnFailure="false"
|
|
syntaxCheck="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="false">
|
|
<testsuites>
|
|
<testsuite name="Package Test Suite">
|
|
<directory suffix="Test.php">./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="false">
|
|
<directory suffix=".php">./src/</directory>
|
|
<exclude>
|
|
<directory suffix="ServiceProvider.php">./src/</directory>
|
|
<directory suffix="Facade.php">./src/</directory>
|
|
<directory suffix="Exception.php">./src/</directory>
|
|
<directory suffix="helpers.php">./src/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|