radarrplexorganizrnginxsonarrdashboardheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximuxlandingpagestartpagelandinghtpcserverhomepagesabnzbd
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
6 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
||
|
backupGlobals="false"
|
||
|
backupStaticAttributes="false"
|
||
|
bootstrap="vendor/autoload.php"
|
||
|
colors="true"
|
||
|
verbose="true"
|
||
|
beStrictAboutOutputDuringTests="true"
|
||
|
beStrictAboutTestSize="true"
|
||
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||
|
beStrictAboutTodoAnnotatedTests="true"
|
||
|
checkForUnintentionallyCoveredCode="true"
|
||
|
forceCoversAnnotation="true">
|
||
|
<testsuites>
|
||
|
<testsuite name="Unit Test Suite">
|
||
|
<directory>test/unit</directory>
|
||
|
</testsuite>
|
||
|
<testsuite name="Integration Test Suite">
|
||
|
<directory>test/functional</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
|
||
|
<filter>
|
||
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
||
|
<directory suffix=".php">src</directory>
|
||
|
</whitelist>
|
||
|
|
||
|
<blacklist>
|
||
|
<directory suffix=".php">vendor</directory>
|
||
|
</blacklist>
|
||
|
</filter>
|
||
|
</phpunit>
|