1 |
cb15593b
|
Cajova-Houba
|
<?xml version="1.0" encoding="UTF-8"?>
|
2 |
|
|
<phpunit backupGlobals="false"
|
3 |
|
|
bootstrap="vendor/autoload.php"
|
4 |
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
5 |
|
|
beStrictAboutOutputDuringTests="true"
|
6 |
|
|
beStrictAboutTodoAnnotatedTests="true"
|
7 |
|
|
checkForUnintentionallyCoveredCode="true"
|
8 |
|
|
forceCoversAnnotation="true"
|
9 |
|
|
verbose="true">
|
10 |
|
|
<testsuites>
|
11 |
|
|
<testsuite name="recursion-context">
|
12 |
|
|
<directory>tests</directory>
|
13 |
|
|
</testsuite>
|
14 |
|
|
</testsuites>
|
15 |
|
|
<filter>
|
16 |
|
|
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="true">
|
17 |
|
|
<directory>src</directory>
|
18 |
|
|
</whitelist>
|
19 |
|
|
</filter>
|
20 |
|
|
</phpunit>
|