destructr/phpunit.xml

16 lines
447 B
XML
Raw Normal View History

2018-08-17 17:32:10 +00:00
<phpunit bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Local">
<directory>tests</directory>
<exclude>tests/Drivers</exclude>
<exclude>tests/LegacyDrivers</exclude>
</testsuite>
2018-09-14 18:17:54 +00:00
<testsuite name="MySQL">
<directory>tests/Drivers/MySQL</directory>
2018-08-17 17:32:10 +00:00
</testsuite>
2018-09-14 18:04:28 +00:00
<testsuite name="SQLite">
<directory>tests/LegacyDrivers/SQLite</directory>
2018-08-17 17:32:10 +00:00
</testsuite>
</testsuites>
</phpunit>