-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
phpunit.xml
49 lines (49 loc) · 1.75 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
40
41
42
43
44
45
46
47
48
49
<phpunit
bootstrap="tests/lib/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="WhiteSpace">
<file>tests/features/whiteSpace.php</file>
</testsuite>
<testsuite name="Templates">
<file>tests/features/templates.php</file>
</testsuite>
<testsuite name="Issues">
<file>tests/features/issues.php</file>
</testsuite>
<testsuite name="Exceptions">
<file>tests/features/exceptions.php</file>
</testsuite>
<testsuite name="Features">
<directory suffix=".php">tests/features</directory>
<exclude>tests/features/templates.php</exclude>
<exclude>tests/features/whiteSpace.php</exclude>
<exclude>tests/features/issues.php</exclude>
<exclude>tests/features/exceptions.php</exclude>
</testsuite>
<testsuite name="Facade">
<file>tests/features/facade.php</file>
</testsuite>
<testsuite name="Performance">
<directory suffix=".php">tests/performance</directory>
</testsuite>
<testsuite name="Example">
<file>tests/example/example.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="./coverage/result.xml" />
<log type="coverage-html" target="./coverage/result" />
<log type="coverage-text" target="./coverage/result.txt" />
</logging>
</phpunit>