28 lines
839 B
XML
28 lines
839 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit colors="true"
|
|
backupStaticAttributes="false"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
bootstrap="vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="Application Test Suite">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./app</directory>
|
|
<exclude>
|
|
<directory suffix=".php">./app/Services/Cipher</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
<php>
|
|
<env name="APP_ENV" value="testing"/>
|
|
</php>
|
|
<listeners>
|
|
<listener class="NunoMaduro\Collision\Adapters\Phpunit\Printer" />
|
|
</listeners>
|
|
</phpunit>
|