forked from gazsp/baum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
39 lines (36 loc) · 1.42 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
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false">
<testsuites>
<testsuite name="Baum Test Suite">
<file>tests/suite/QueryBuilderExtensionTest.php</file>
<file>tests/suite/NodeModelExtensionsTest.php</file>
<directory>tests/suite/Category</directory>
<directory>tests/suite/Cluster</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true" processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">src</directory>
<exclude>
<directory>src/Baum/Providers</directory>
<directory>src/Baum/Generators</directory>
<directory>src/Baum/Console</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="build/coverage/php" title="gazsp/baum" charset="UTF-8" yui="true" highlight="true"
lowUpperBound="30"
highLowerBound="80"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>