2017-10-26 23:24:33 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-10-13 11:06:35 +08:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" backupStaticAttributes="false" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" bootstrap="vendor/autoload.php" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">./app/Services/Cipher</directory>
|
|
|
|
</exclude>
|
|
|
|
</coverage>
|
2018-02-16 15:44:36 +08:00
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Application Test Suite">
|
|
|
|
<directory suffix="Test.php">./tests</directory>
|
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<php>
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
</php>
|
2020-03-09 12:29:00 +08:00
|
|
|
<listeners>
|
2020-10-13 11:06:35 +08:00
|
|
|
<listener class="NunoMaduro\Collision\Adapters\Phpunit\Printer"/>
|
2020-03-09 12:29:00 +08:00
|
|
|
</listeners>
|
2017-10-26 23:24:33 +08:00
|
|
|
</phpunit>
|