Query/build/phpunit.xml

42 lines
1.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit
addUncoveredFilesFromWhitelist="true"
colors="true"
stopOnFailure="false"
bootstrap="../tests/bootstrap.php">
<filter>
<whitelist>
<directory suffix=".php">../src/*</directory>
</whitelist>
</filter>
<testsuites>
<testsuite name="CoreTests">
<file>../tests/CoreTest.php</file>
<file>../tests/ConnectionManagerTest.php</file>
<file>../tests/QueryParserTest.php</file>
</testsuite>
<testsuite name="MySQL Tests">
<directory>../tests/Drivers/MySQL/</directory>
</testsuite>
<testsuite name="PgSQL Tests">
<directory>../tests/Drivers/PgSQL/</directory>
</testsuite>
<testsuite name="SQLite Tests">
<directory>../tests/Drivers/SQLite/</directory>
</testsuite>
<!-- <testsuite name="FirebirdTests">
<file>../tests/databases/firebird/FirebirdTest.php</file>
<file>../tests/databases/firebird/FirebirdQBTest.php</file>
</testsuite>
<testsuite name="OCITests">
<file>../tests/databases/oci/OCITest.php</file>
<file>../tests/databases/oci/OCIQBTest.php</file>
</testsuite> -->
</testsuites>
<logging>
<log type="coverage-html" target="coverage"/>
<log type="coverage-clover" target="logs/clover.xml"/>
<log type="coverage-xml" target="logs/coverage" />
<log type="xml" target="logs/junit.xml" logIncompleteSkipped="true"/>
</logging>
</phpunit>