15 lines
447 B
XML
15 lines
447 B
XML
<phpunit bootstrap="vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="Local">
|
|
<directory>tests</directory>
|
|
<exclude>tests/Drivers</exclude>
|
|
<exclude>tests/LegacyDrivers</exclude>
|
|
</testsuite>
|
|
<testsuite name="MySQL">
|
|
<directory>tests/Drivers/MySQL</directory>
|
|
</testsuite>
|
|
<testsuite name="SQLite">
|
|
<directory>tests/LegacyDrivers/SQLite</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|