snipe-it/phpunit.xml

35 lines
1.1 KiB
XML
Raw Permalink Normal View History

2016-03-25 01:18:05 -07:00
<?xml version="1.0" encoding="UTF-8"?>
2023-03-06 17:24:09 -08:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticProperties="false"
2023-03-06 17:24:09 -08:00
bootstrap="bootstrap/autoload.php"
cacheDirectory=".phpunit.cache"
2023-03-06 17:24:09 -08:00
colors="true"
processIsolation="false"
stopOnFailure="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd"
2023-03-06 17:24:09 -08:00
>
<testsuites>
2023-02-13 18:55:50 -08:00
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
</testsuites>
<php>
2023-02-13 18:56:22 -08:00
<env name="APP_ENV" value="testing"/>
2023-02-13 18:55:50 -08:00
<env name="BCRYPT_ROUNDS" value="4"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="MAIL_MAILER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
2023-03-06 17:24:09 -08:00
<env name="SESSION_DRIVER" value="array"/>
<ini name="display_errors" value="true"/>
</php>
<source>
<include>
<directory suffix=".php">app/</directory>
</include>
</source>
2016-03-25 01:18:05 -07:00
</phpunit>