1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
3
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.2/phpunit.xsd"
|
4
|
bootstrap="tests/bootstrap.php"
|
5
|
backupGlobals="false"
|
6
|
verbose="true">
|
7
|
<testsuite name="PHPUnit Mock Objects">
|
8
|
<directory suffix="Test.php">tests</directory>
|
9
|
<directory suffix=".phpt">tests</directory>
|
10
|
</testsuite>
|
11
|
|
12
|
<logging>
|
13
|
<log type="coverage-html" target="build/coverage"/>
|
14
|
</logging>
|
15
|
|
16
|
<filter>
|
17
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
18
|
<directory suffix=".php">src</directory>
|
19
|
</whitelist>
|
20
|
</filter>
|
21
|
</phpunit>
|
22
|
|