2015-11-10 06:45:55 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit
|
2018-01-19 16:50:34 -05:00
|
|
|
addUncoveredFilesFromWhitelist="true"
|
2015-11-10 06:45:55 -05:00
|
|
|
colors="true"
|
|
|
|
stopOnFailure="false"
|
2018-01-22 12:03:37 -05:00
|
|
|
bootstrap="./../tests/bootstrap.php">
|
2015-11-10 06:45:55 -05:00
|
|
|
<filter>
|
|
|
|
<whitelist>
|
2018-01-22 12:03:37 -05:00
|
|
|
<directory suffix=".php">./../src/*</directory>
|
2015-11-10 06:45:55 -05:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="CoreTests">
|
2018-01-22 12:03:37 -05:00
|
|
|
<file>./../tests/CoreTest.php</file>
|
|
|
|
<file>./../tests/ConnectionManagerTest.php</file>
|
|
|
|
<file>./../tests/QueryParserTest.php</file>
|
2015-11-10 06:45:55 -05:00
|
|
|
</testsuite>
|
2018-01-19 16:50:34 -05:00
|
|
|
<testsuite name="MySQL Tests">
|
2018-01-22 12:03:37 -05:00
|
|
|
<directory>./../tests/Drivers/MySQL/</directory>
|
2015-11-10 06:45:55 -05:00
|
|
|
</testsuite>
|
2018-01-19 16:50:34 -05:00
|
|
|
<testsuite name="PgSQL Tests">
|
2018-01-22 12:03:37 -05:00
|
|
|
<directory>./../tests/Drivers/PgSQL/</directory>
|
2015-11-10 06:45:55 -05:00
|
|
|
</testsuite>
|
2018-01-19 16:50:34 -05:00
|
|
|
<testsuite name="SQLite Tests">
|
2018-01-22 12:03:37 -05:00
|
|
|
<directory>./../tests/Drivers/SQLite/</directory>
|
2015-11-10 06:45:55 -05:00
|
|
|
</testsuite>
|
2018-01-19 16:50:34 -05:00
|
|
|
<!-- <testsuite name="FirebirdTests">
|
2015-11-10 06:45:55 -05:00
|
|
|
<file>../tests/databases/firebird/FirebirdTest.php</file>
|
|
|
|
<file>../tests/databases/firebird/FirebirdQBTest.php</file>
|
|
|
|
</testsuite>
|
2018-01-19 16:50:34 -05:00
|
|
|
<testsuite name="OCITests">
|
2016-09-07 13:06:28 -04:00
|
|
|
<file>../tests/databases/oci/OCITest.php</file>
|
|
|
|
<file>../tests/databases/oci/OCIQBTest.php</file>
|
|
|
|
</testsuite> -->
|
2015-11-10 06:45:55 -05:00
|
|
|
</testsuites>
|
|
|
|
<logging>
|
2018-01-22 12:03:37 -05:00
|
|
|
<log type="coverage-html" target="./../coverage"/>
|
2015-11-10 06:45:55 -05:00
|
|
|
<log type="coverage-clover" target="logs/clover.xml"/>
|
|
|
|
<log type="coverage-xml" target="logs/coverage" />
|
2016-09-07 13:06:28 -04:00
|
|
|
<log type="xml" target="logs/junit.xml" logIncompleteSkipped="true"/>
|
2015-11-10 06:45:55 -05:00
|
|
|
</logging>
|
|
|
|
</phpunit>
|