2018-10-04 20:10:43 +03:00
|
|
|
<?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"
|
2019-12-20 22:23:09 +11:00
|
|
|
stopOnFailure="false">
|
2018-10-04 20:10:43 +03:00
|
|
|
<testsuites>
|
|
|
|
|
<testsuite name="Unit">
|
|
|
|
|
<directory suffix="Test.php">./tests/Unit</directory>
|
|
|
|
|
</testsuite>
|
|
|
|
|
|
2018-10-17 23:26:27 +11:00
|
|
|
<testsuite name="Integration">
|
|
|
|
|
<directory suffix="Test.php">./tests/Integration</directory>
|
2018-10-04 20:10:43 +03:00
|
|
|
</testsuite>
|
2018-10-24 21:24:09 +11:00
|
|
|
|
|
|
|
|
<testsuite name="Feature">
|
|
|
|
|
<directory suffix="Test.php">./tests/Feature</directory>
|
|
|
|
|
</testsuite>
|
2019-05-04 13:14:37 +10:00
|
|
|
|
|
|
|
|
<testsuite name="Pdf">
|
|
|
|
|
<directory suffix="Test.php">./tests/Pdf</directory>
|
|
|
|
|
</testsuite>
|
2018-10-04 20:10:43 +03:00
|
|
|
</testsuites>
|
|
|
|
|
<filter>
|
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
|
|
|
<directory suffix=".php">./app</directory>
|
2018-10-05 22:46:53 +10:00
|
|
|
<exclude>
|
|
|
|
|
<directory suffix=".php">./vendor</directory>
|
2018-10-05 22:59:26 +10:00
|
|
|
<directory suffix=".php">./app/Providers</directory>
|
2018-10-18 21:47:55 +11:00
|
|
|
<directory suffix=".php">./app/Http</directory>
|
|
|
|
|
<directory suffix=".php">./app/Models</directory>
|
2019-04-20 09:11:54 +10:00
|
|
|
<directory suffix=".php">./app/Transformers</directory>
|
|
|
|
|
<directory suffix=".php">./app/Events</directory>
|
|
|
|
|
<directory suffix=".php">./app/Observers</directory>
|
|
|
|
|
<directory suffix=".php">./app/Policies</directory>
|
|
|
|
|
<directory suffix=".php">./app/Jobs</directory>
|
2019-08-26 18:41:22 +10:00
|
|
|
<directory suffix=".php">./app/Factory</directory>
|
|
|
|
|
<directory suffix=".php">./app/Helpers</directory>
|
|
|
|
|
<directory suffix=".php">./app/Libraries</directory>
|
|
|
|
|
<directory suffix=".php">./app/Listeners</directory>
|
|
|
|
|
<directory suffix=".php">./app/Mail</directory>
|
|
|
|
|
<directory suffix=".php">./app/Notifications</directory>
|
|
|
|
|
<directory suffix=".php">./app/Providers</directory>
|
|
|
|
|
<directory suffix=".php">./app/Repositories</directory>
|
2019-04-20 09:11:54 +10:00
|
|
|
<directory suffix=".php">./app/Filters</directory>
|
2018-10-05 22:59:26 +10:00
|
|
|
<file>./app/Console/Kernel.php</file>
|
2018-10-18 21:47:55 +11:00
|
|
|
<file>./app/Constants.php</file>
|
|
|
|
|
<file>./app/Libraries/OFX.php</file>
|
|
|
|
|
<file>./app/Exceptions/Handler.php</file>
|
2018-10-05 22:46:53 +10:00
|
|
|
</exclude>
|
2018-10-04 20:10:43 +03:00
|
|
|
</whitelist>
|
2018-10-05 22:46:53 +10:00
|
|
|
|
2018-10-04 20:10:43 +03:00
|
|
|
</filter>
|
|
|
|
|
<php>
|
|
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
|
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
|
|
|
|
<env name="MAIL_DRIVER" value="array"/>
|
|
|
|
|
</php>
|
2018-10-05 22:12:20 +10:00
|
|
|
<logging>
|
|
|
|
|
<log type="coverage-clover" target="coverage.xml"/>
|
|
|
|
|
</logging>
|
2018-10-04 20:10:43 +03:00
|
|
|
</phpunit>
|