33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" beStrictAboutOutputDuringTests="false" colors="true" stopOnFailure="false" bootstrap="./../tests/bootstrap.php" verbose="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">./../src/</directory>
|
|
</include>
|
|
<report>
|
|
<clover outputFile="logs/clover.xml"/>
|
|
<html outputDirectory="./../coverage"/>
|
|
<xml outputDirectory="logs/coverage"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="CoreTests">
|
|
<file>./../tests/CoreTest.php</file>
|
|
<file>./../tests/ConnectionManagerTest.php</file>
|
|
<file>./../tests/QueryParserTest.php</file>
|
|
</testsuite>
|
|
<testsuite name="MySQL">
|
|
<directory>./../tests/Drivers/MySQL/</directory>
|
|
</testsuite>
|
|
<testsuite name="PgSQL">
|
|
<directory>./../tests/Drivers/PgSQL/</directory>
|
|
</testsuite>
|
|
<testsuite name="SQLite">
|
|
<directory>./../tests/Drivers/SQLite/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging>
|
|
<junit outputFile="logs/junit.xml"/>
|
|
</logging>
|
|
</phpunit>
|