adrema/phpunit.xml

39 lines
1.5 KiB
XML
Raw Normal View History

2020-04-10 20:32:12 +02:00
<?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">
<testsuites>
2022-02-17 02:41:08 +01:00
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
2020-04-10 20:32:12 +02:00
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
2024-06-27 00:19:12 +02:00
<testsuite name="Fileshare">
<directory suffix="Test.php">./tests/Fileshare</directory>
</testsuite>
2021-06-18 23:36:06 +02:00
<testsuite name="NamiUnit">
<directory suffix="Test.php">./packages/laravel-nami/tests/Unit</directory>
</testsuite>
<testsuite name="EndToEnd">
<directory suffix="Test.php">./tests/EndToEnd</directory>
</testsuite>
2020-04-10 20:32:12 +02:00
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
<php>
<server name="APP_ENV" value="testing"/>
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
2023-07-25 17:23:48 +02:00
<server name="BROADCAST_DRIVER" value="log"/>
2020-04-10 20:32:12 +02:00
<server name="MAIL_MAILER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="TELESCOPE_ENABLED" value="false"/>
</php>
</phpunit>