Files
librenms-librenms/phpunit.xml
T

45 lines
1.4 KiB
XML
Raw Normal View History

2016-03-03 11:56:29 -06:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="true"
backupStaticAttributes="false"
2018-05-09 08:05:17 -05:00
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
2016-03-03 11:56:29 -06:00
<testsuites>
<testsuite name="Application Test Suite">
<directory>tests/</directory>
2016-03-03 11:56:29 -06:00
</testsuite>
2018-05-09 08:05:17 -05:00
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
</testsuite>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
2016-03-03 11:56:29 -06:00
</testsuites>
<groups>
<exclude>
2019-02-14 09:06:10 -06:00
<group>browser</group>
<group>mibs</group>
</exclude>
</groups>
2018-05-09 08:05:17 -05:00
<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"/>
<server name="MAIL_DRIVER" value="array"/>
<server name="QUEUE_CONNECTION" value="sync"/>
<server name="SESSION_DRIVER" value="array"/>
<server name="DB_CONNECTION" value="testing"/>
2018-05-09 08:05:17 -05:00
</php>
2016-03-03 11:56:29 -06:00
</phpunit>