0d1677a9b4
* saves schemas to database, uses those schemas - still need to finish methods for update/add/remove operations on columns, for updating schemas * fix for schema table creation * possible test fixes * possibly working, dropped some non-integration tests that didn't work with schema changes * seems working, but still needs schema updating * mysql's schema updates seem to be working * mariadb driver tests * change to how saving schema for createTable works * very basic tests for schema management * test that schemas are updated in schema table
13 lines
375 B
XML
13 lines
375 B
XML
<phpunit bootstrap="vendor/autoload.php">
|
|
<testsuites>
|
|
<testsuite name="MySQL">
|
|
<directory>tests/Drivers/MySQL</directory>
|
|
</testsuite>
|
|
<testsuite name="MariaDB">
|
|
<directory>tests/Drivers/MariaDB</directory>
|
|
</testsuite>
|
|
<testsuite name="SQLite">
|
|
<directory>tests/Drivers/SQLite</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
</phpunit>
|