-
Notifications
You must be signed in to change notification settings - Fork 183
/
phpunit.xml
35 lines (33 loc) · 1.3 KB
/
phpunit.xml
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
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/5.7/phpunit.xsd"
bootstrap="tests/test_helper.php"
colors="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
beStrictAboutTestsThatDoNotTestAnything="true">
<php>
<includePath>tests/TestHelpers</includePath>
</php>
<testsuites>
<!--<testsuite name="cURL based tests">-->
<!--<directory>test/integration</directory>-->
<!--</testsuite>-->
<testsuite name="Unit tests">
<directory>tests/unit/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib</directory>
<exclude>
<file>./lib/Utils/Analysis/FastAnalysis.php</file>
<file>./lib/Utils/Analysis/TmAnalysis.php</file>
<file>./lib/Utils/TaskRunner/Executor.php</file>
<file>./lib/Utils/fileupload/index.php</file>
<file>./lib/View/APIDoc.php</file>
<file>./lib/View/templates/_APIDoc.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>