forked from pdepend/pdepend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
26 lines (23 loc) · 861 Bytes
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit bootstrap="src/test/php/PDepend/bootstrap.php">
<php>
<ini name="date.timezone" value="UTC" />
</php>
<testsuites>
<testsuite name="PHP Depends Test Suite">
<directory suffix="Test.php">src/test/php</directory>
<directory suffix=".phpt">src/test/php</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/main/php/PHP</directory>
<exclude>
<!-- Exclude all vendor files -->
<directory suffix=".php">vendor/</directory>
<!-- Exclude this exotic result printer -->
<file>src/main/php/PDepend/DbusUI/ResultPrinter.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>