-
Notifications
You must be signed in to change notification settings - Fork 6
/
phpunit.xml.dist
44 lines (40 loc) · 1.56 KB
/
phpunit.xml.dist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
backupGlobals="false"
strict="true"
beStrictAboutChangesToGlobalState="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestSize="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutResourceUsageDuringSmallTests="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutTodoAnnotatedTests="true"
enforceTimeLimit="true"
failOnRisky="true"
bootstrap="vendor/autoload.php"
checkForUnintentionallyCoveredCode="true"
colors="true"
forceCoversAnnotation="true"
verbose="true"
printerFile="vendor/whatthejeff/nyancat-phpunit-resultprinter/src/NyanCat/PHPUnit/ResultPrinter.php"
printerClass="NyanCat\PHPUnit\ResultPrinter"
>
<testsuites>
<testsuite name="Flysystem Github Adapter - Unit Tests">
<directory>tests/unit-tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<log type="testdox-text" target="php://stdout"/>
<log type="coverage-clover" showUncoveredFiles="true" target="build/logs/clover.xml"/>
<log type="coverage-text" showUncoveredFiles="true" target="php://stdout"/>
<log type="coverage-html" showUncoveredFiles="true" target="build/coverage" charset="UTF-8" yui="true" highlight="true"/>
</logging>
</phpunit>