-
Notifications
You must be signed in to change notification settings - Fork 500
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
40 lines (38 loc) · 1.03 KB
/
phpunit.xml.dist
File metadata and controls
40 lines (38 loc) · 1.03 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="bootstrap.php">
<testsuites>
<testsuite name="Authentication">
<directory suffix=".php">Auth</directory>
</testsuite>
<testsuite name="Transports">
<directory suffix=".php">Transport</directory>
</testsuite>
<testsuite name="Proxies">
<directory suffix=".php">Proxy</directory>
</testsuite>
<testsuite name="General">
<file>ChunkedEncoding.php</file>
<file>Cookies.php</file>
<file>File.php</file>
<file>IDNAEncoder.php</file>
<file>IRI.php</file>
<file>Requests.php</file>
<file>Response/Headers.php</file>
<file>Session.php</file>
<file>SSL.php</file>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="coverage" title="PHPUnit"
charset="UTF-8" yui="true" highlight="true"
lowUpperBound="35" highLowerBound="90"/>
</logging>
<filter>
<blacklist>
<directory suffix=".php">.</directory>
</blacklist>
<whitelist>
<directory suffix=".php">../library</directory>
</whitelist>
</filter>
</phpunit>