-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
30 lines (30 loc) · 1.15 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="tests/boot.php">
<php>
</php>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./webfiori/database/mysql</directory>
<directory suffix=".php">./webfiori/database/mssql</directory>
<directory suffix=".php">./webfiori/database</directory>
<directory suffix=".php">./webfiori/database/migration</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="clover.xml"/>
</logging>
<testsuites>
<testsuite name="Common Tests">
<directory>./tests/webfiori/database/tests/common</directory>
</testsuite>
<testsuite name="MySQL Tests">
<directory>./tests/webfiori/database/tests/mysql</directory>
</testsuite>
<testsuite name="MSSQL Tests">
<directory>./tests/webfiori/database/tests/mssql</directory>
</testsuite>
<testsuite name="Migration Tests">
<directory>./tests/webfiori/database/tests</directory>
</testsuite>
</testsuites>
</phpunit>