-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
38 lines (38 loc) · 1001 Bytes
/
phpunit.xml
File metadata and controls
38 lines (38 loc) · 1001 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
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false"
processIsolation="false"
cacheResult="false"
>
<testsuites>
<testsuite name="Unit">
<directory suffix="Test.php">./tests/Unit/</directory>
</testsuite>
<testsuite name="Integration">
<directory suffix="Test.php">./tests/Integration/</directory>
</testsuite>
<testsuite name="all">
<directory suffix="Test.php">./tests/</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./app</directory>
</include>
<exclude>
<directory>./vendor</directory>
<directory>./tests</directory>
<directory>./node_modules</directory>
</exclude>
</coverage>
<logging>
<junit outputFile="tests/results/junit.xml"/>
<testdoxHtml outputFile="tests/results/testdox.html"/>
</logging>
</phpunit>