-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
27 lines (27 loc) · 860 Bytes
/
Copy pathphpunit.xml
File metadata and controls
27 lines (27 loc) · 860 Bytes
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
<phpunit
bootstrap="tests/bootstrap.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
>
<testsuites>
<testsuite name="Adapter">
<directory suffix="Test.php">tests/</directory>
<exclude>tests/project-s5/var</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<php>
<server name="KERNEL_CLASS" value="App\Kernel" />
</php>
<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>