forked from pdepend/pdepend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
31 lines (28 loc) · 1.22 KB
/
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
27
28
29
30
31
<?xml version="1.0"?>
<phpunit>
<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 some interfaces that are marked as uncovered.
-->
<exclude>
<file>src/main/php/PHP/Depend/BuilderI.php</file>
<file>src/main/php/PHP/Depend/ProcessListenerI.php</file>
<file>src/main/php/PHP/Depend/TokenizerI.php</file>
<file>src/main/php/PHP/Depend/VisitorI.php</file>
<file>src/main/php/PHP/Depend/Metrics/AggregateAnalyzerI.php</file>
<file>src/main/php/PHP/Depend/Metrics/ListenerI.php</file>
<file>src/main/php/PHP/Depend/Parser/TokenException.php</file>
<!-- Exclude this exotic result printer -->
<file>src/main/php/PHP/Depend/DbusUI/ResultPrinter.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>