forked from b01/d3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
33 lines (33 loc) · 771 Bytes
/
phpunit.xml
File metadata and controls
33 lines (33 loc) · 771 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
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="tests/bootstrap.php"
checkForUnintentionallyCoveredCode="true">
<testsuites>
<testsuite name="All">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>.</directory>
</blacklist>
<whitelist>
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<listeners>
<listener class="\Kshabazz\Interception\InterceptionListener">
<arguments>
<string>\Kshabazz\Interception\StreamWrappers\Http</string>
<string>FIXTURES_PATH</string>
<array>
<element>
<string>http</string>
</element>
<element>
<string>https</string>
</element>
</array>
</arguments>
</listener>
</listeners>
</phpunit>