Files
librenms-librenms/phpunit.xml
T

40 lines
1.2 KiB
XML
Raw Normal View History

2016-03-03 11:56:29 -06:00
<?xml version="1.0" encoding="UTF-8"?>
2018-05-09 08:05:17 -05:00
<phpunit
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>
<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>
<env name="APP_ENV" value="testing"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
2016-03-03 11:56:29 -06:00
</phpunit>