akaunting/phpunit.xml

33 lines
1.3 KiB
XML
Raw Permalink Normal View History

2018-07-14 13:22:33 +03:00
<?xml version="1.0" encoding="UTF-8"?>
2020-03-14 23:38:54 +03:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
2020-07-06 15:17:46 +03:00
bootstrap="bootstrap/autoload.php"
2020-03-14 23:38:54 +03:00
colors="true">
2018-07-14 13:22:33 +03:00
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
2019-12-08 02:39:40 +03:00
<directory suffix="Test.php">./modules/**/Tests/Unit</directory>
2018-07-14 13:22:33 +03:00
</testsuite>
2020-03-14 23:38:54 +03:00
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
<directory suffix="Test.php">./modules/**/Tests/Feature</directory>
</testsuite>
2018-07-14 13:22:33 +03:00
</testsuites>
2023-03-16 18:15:56 +03:00
<coverage>
2020-10-14 17:07:59 +03:00
<include>
2018-07-14 13:22:33 +03:00
<directory suffix=".php">./app</directory>
2020-10-14 17:07:59 +03:00
</include>
</coverage>
2018-07-14 13:22:33 +03:00
<php>
2020-03-14 23:38:54 +03:00
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="DB_CONNECTION" value="sqlite"/>
<server name="DB_DATABASE" value=":memory:"/>
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
2020-04-12 16:33:06 +03:00
<server name="TELESCOPE_ENABLED" value="false"/>
2018-07-14 13:22:33 +03:00
</php>
</phpunit>