forked from crocos/php-treasure-data
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
26 lines (26 loc) · 703 Bytes
/
phpunit.xml
File metadata and controls
26 lines (26 loc) · 703 Bytes
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
<phpunit
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="test/bootstrap.php"
colors="true"
forceCoversAnnotation="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
>
<testsuites>
<testsuite name="TreasureData">
<directory suffix="Test.php">test</directory>
<exclude>src</exclude>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="tmp/report" charset="UTF-8"
yui="true" highlight="true"
lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>