forked from Potherca/flysystem-github
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
Latest commit
44 lines (40 loc) · 1.56 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
44 lines (40 loc) · 1.56 KB
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>
<testsuitename="Flysystem Github Adapter - Unit Tests">
<directory>tests/unit-tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directorysuffix=".php">src/</directory>
</whitelist>
</filter>
<logging>
<logtype="testdox-text"target="php://stdout"/>
<logtype="coverage-clover"showUncoveredFiles="true"target="build/logs/clover.xml"/>
<logtype="coverage-text"showUncoveredFiles="true"target="php://stdout"/>
<logtype="coverage-html"showUncoveredFiles="true"target="build/coverage"charset="UTF-8"yui="true"highlight="true"/>
</logging>
</phpunit>