tethys/phpunit.xml

35 lines
1.2 KiB
XML
Raw Normal View History

2015-07-19 06:49:24 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2021-02-26 16:02:07 +00:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="./vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
cacheResult ="false">
2015-07-19 06:49:24 +00:00
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
2021-02-26 16:02:07 +00:00
<!-- <testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite> -->
<testsuite name="Feature">
<directory>./tests/Feature</directory>
</testsuite>
2015-07-19 06:49:24 +00:00
</testsuites>
2021-02-26 16:02:07 +00:00
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
</whitelist>
</filter>
2015-07-19 06:49:24 +00:00
<php>
<env name="APP_ENV" value="testing"/>
2021-02-26 16:02:07 +00:00
<server name="BCRYPT_ROUNDS" value="4"/>
<server name="CACHE_DRIVER" value="array"/>
<server name="DB_CONNECTION" value="testing"/>
<!-- <server name="DB_DATABASE" value=":memory:"/> -->
<server name="MAIL_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
2015-07-19 06:49:24 +00:00
</php>
</phpunit>