1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-17 21:28:30 +01:00
LinkAce/phpunit.xml

50 lines
1.6 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
>
2019-09-12 22:54:59 +02:00
<testsuites>
<testsuite name="Commands">
<directory suffix="Test.php">./tests/Commands</directory>
</testsuite>
<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>
2019-09-12 22:54:59 +02:00
<extensions>
<extension class="Tests\Bootstrap"/>
</extensions>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./app</directory>
</include>
</coverage>
2019-09-12 22:54:59 +02:00
<php>
<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>
</phpunit>