2015-07-17 15:38:06 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
|
|
|
colors="true"
|
|
|
|
stopOnFailure="false"
|
|
|
|
bootstrap="tests/bootstrap.php">
|
|
|
|
<filter>
|
2015-07-30 13:13:12 -04:00
|
|
|
<whitelist>
|
|
|
|
<directory suffix=".php">src/*</directory>
|
|
|
|
<file>autoload.php</file>
|
|
|
|
</whitelist>
|
2015-07-17 15:38:06 -04:00
|
|
|
</filter>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="CoreTests">
|
2015-07-31 10:24:34 -04:00
|
|
|
<file>tests/core/core_test.php</file>
|
|
|
|
<file>tests/core/query_parser_test.php</file>
|
2015-07-30 16:40:30 -04:00
|
|
|
<file>tests/core/connection_manager_test.php</file>
|
2015-07-17 15:38:06 -04:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="MySQLTests">
|
|
|
|
<file>tests/databases/mysql/MySQLTest.php</file>
|
|
|
|
<file>tests/databases/mysql/MySQLQBTest.php</file>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="PgSQLTests">
|
|
|
|
<file>tests/databases/pgsql/PgSQLTest.php</file>
|
|
|
|
<file>tests/databases/pgsql/PgSQLQBTest.php</file>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="SQLiteTests">
|
|
|
|
<file>tests/databases/sqlite/SQLiteTest.php</file>
|
|
|
|
<file>tests/databases/sqlite/SQLiteQBTest.php</file>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="FirebirdTests">
|
|
|
|
<file>tests/databases/firebird/FirebirdTest.php</file>
|
|
|
|
<file>tests/databases/firebird/FirebirdQBTest.php</file>
|
|
|
|
</testsuite>
|
2015-07-20 15:24:21 -04:00
|
|
|
<testsuite name="PDOFirebirdTests">
|
2015-07-29 16:51:17 -04:00
|
|
|
<file>tests/databases/pdofirebird/PDOFirebirdTest.php</file>
|
|
|
|
<file>tests/databases/pdofirebird/PDOFirebirdQBTest.php</file>
|
2015-07-20 15:24:21 -04:00
|
|
|
</testsuite>
|
2015-07-17 15:38:06 -04:00
|
|
|
</testsuites>
|
|
|
|
</phpunit>
|