destructr/phpunit.xml

16 lines
433 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>
<testsuite name="DB">
<directory>tests/Drivers</directory>
</testsuite>
<testsuite name="LegacyDB">
<directory>tests/LegacyDrivers</directory>
</testsuite>
</testsuites>
</phpunit>