-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
31 lines (31 loc) · 1.23 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="../unittest/bootstrap.php">
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./classes/</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="Database Default Implementations">
<directory suffix=".php">tests/database/base</directory>
<directory suffix=".php">tests/database/sql</directory>
</testsuite>
<testsuite name="Database MySQL Implementations">
<directory suffix=".php">tests/database/mysql</directory>
</testsuite>
<testsuite name="Database PostgreSQL Implementations">
<directory suffix=".php">tests/database/postgresql</directory>
</testsuite>
<testsuite name="Database PDO Implementations">
<directory suffix=".php">tests/database/pdo</directory>
</testsuite>
<testsuite name="Database SQL Server Implementations">
<directory suffix=".php">tests/database/pdo/sqlserver</directory>
<directory suffix=".php">tests/database/sqlserver</directory>
</testsuite>
<testsuite name="Database SQLite Implementations">
<directory suffix=".php">tests/database/pdo/sqlite</directory>
<directory suffix=".php">tests/database/sqlite</directory>
</testsuite>
</testsuites>
</phpunit>