forked from mpratt/Embera
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·23 lines (23 loc) · 791 Bytes
/
Copy pathphpunit.xml
File metadata and controls
executable file
·23 lines (23 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<phpunit strict="true"
backupGlobals="false"
backupStaticAttributes="false"
syntaxCheck="false"
timeoutForSmallTests="100"
timeoutForMediumTests="200"
timeoutForLargeTests="300"
bootstrap="Tests/Autoload.php">
<testsuites>
<testsuite name="Library Check">
<directory suffix=".php">Tests/</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory suffix=".php">vendor/</directory>
<directory suffix=".php">Tests/</directory>
</blacklist>
</filter>
<logging>
<log type="coverage-html" target="Tests/Coverage" charset="UTF-8" yui="true" highlight="false" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>