2018-08-22 20:54:44 +02:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2020-11-08 20:10:42 +01:00
|
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
2022-12-14 23:45:37 +01:00
|
|
|
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
|
2018-08-22 20:54:44 +02:00
|
|
|
bootstrap="vendor/autoload.php"
|
|
|
|
colors="true"
|
2022-12-14 23:45:37 +01:00
|
|
|
>
|
2019-09-12 22:54:59 +02:00
|
|
|
<testsuites>
|
2020-05-06 18:27:02 +02:00
|
|
|
<testsuite name="Commands">
|
|
|
|
<directory suffix="Test.php">./tests/Commands</directory>
|
|
|
|
</testsuite>
|
2020-06-05 11:45:21 +02:00
|
|
|
<testsuite name="Components">
|
|
|
|
<directory suffix="Test.php">./tests/Components</directory>
|
|
|
|
</testsuite>
|
2020-05-05 23:21:46 +02:00
|
|
|
<testsuite name="Controller">
|
|
|
|
<directory suffix="Test.php">./tests/Controller</directory>
|
2019-09-12 22:54:59 +02:00
|
|
|
</testsuite>
|
2020-05-05 23:21:46 +02:00
|
|
|
<testsuite name="Database">
|
|
|
|
<directory suffix="Test.php">./tests/Database</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Helper">
|
|
|
|
<directory suffix="Test.php">./tests/Helper</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="Models">
|
|
|
|
<directory suffix="Test.php">./tests/Models</directory>
|
2019-09-12 22:54:59 +02:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2022-12-14 23:45:37 +01:00
|
|
|
|
2019-09-12 22:54:59 +02:00
|
|
|
<extensions>
|
|
|
|
<extension class="Tests\Bootstrap"/>
|
|
|
|
</extensions>
|
2022-12-14 23:45:37 +01:00
|
|
|
|
|
|
|
<coverage processUncoveredFiles="true">
|
|
|
|
<include>
|
|
|
|
<directory suffix=".php">./app</directory>
|
|
|
|
</include>
|
|
|
|
</coverage>
|
|
|
|
|
2019-09-12 22:54:59 +02:00
|
|
|
<php>
|
2022-12-14 23:45:37 +01:00
|
|
|
<env name="APP_ENV" value="testing"/>
|
|
|
|
<env name="APP_KEY" value="base64:cQiwS51aa/3oti4KXHtj8mZLNyiDTA7BCAB5GIMvg5w="/>
|
|
|
|
<env name="BCRYPT_ROUNDS" value="4"/>
|
|
|
|
<env name="CACHE_DRIVER" value="array"/>
|
|
|
|
<env name="DB_CONNECTION" value="testing"/>
|
|
|
|
<env name="MAIL_MAILER" value="array"/>
|
|
|
|
<env name="QUEUE_CONNECTION" value="sync"/>
|
|
|
|
<env name="SESSION_DRIVER" value="array"/>
|
|
|
|
<env name="TELESCOPE_ENABLED" value="false"/>
|
2019-09-12 22:54:59 +02:00
|
|
|
</php>
|
2018-08-22 20:54:44 +02:00
|
|
|
</phpunit>
|