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.
21 lines
661 B
21 lines
661 B
4 years ago
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<phpunit backupGlobals="false"
|
||
|
bootstrap="vendor/autoload.php"
|
||
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
||
|
beStrictAboutOutputDuringTests="true"
|
||
|
beStrictAboutTodoAnnotatedTests="true"
|
||
|
checkForUnintentionallyCoveredCode="true"
|
||
|
forceCoversAnnotation="true"
|
||
|
verbose="true">
|
||
|
<testsuites>
|
||
|
<testsuite name="recursion-context">
|
||
|
<directory>tests</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<filter>
|
||
|
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
|
||
|
<directory>src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
</phpunit>
|