-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 1008 Bytes
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 1008 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" cacheResultFile="tests/output/.phpunit.result.cache" bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Caldera Database Test Suite">
<directory>./tests/</directory>
</testsuite>
<testsuite name="Schema">
<directory>./tests/Database/Schema</directory>
</testsuite>
<testsuite name="Migrations">
<directory>./tests/Database/Migrations</directory>
</testsuite>
<testsuite name="Seeds">
<directory>./tests/Database/Seeds</directory>
</testsuite>
</testsuites>
<logging>
<testdoxHtml outputFile="tests/output/index.html"/>
</logging>
<coverage>
<include>
<directory suffix=".php">./src/</directory>
</include>
<report>
<html outputDirectory="tests/output/coverage" lowUpperBound="50" highLowerBound="90"/>
</report>
</coverage>
</phpunit>