17 lines
564 B
PHP
17 lines
564 B
PHP
<?php
|
|
/* Destructr | https://github.com/jobyone/destructr | MIT License */
|
|
declare (strict_types = 1);
|
|
namespace Destructr\Drivers\SQLite;
|
|
|
|
use Destructr\Drivers\AbstractDriverIntegrationTest;
|
|
use Destructr\Drivers\SQLiteDriver;
|
|
|
|
class SQLiteDriverIntegrationTest extends AbstractDriverIntegrationTest
|
|
{
|
|
const DRIVER_CLASS = SQLiteDriver::class;
|
|
const DRIVER_DSN = 'sqlite:'.__DIR__.'/integration.test.sqlite';
|
|
const DRIVER_USERNAME = 'root';
|
|
const DRIVER_PASSWORD = '';
|
|
const DRIVER_OPTIONS = null;
|
|
const TEST_TABLE = 'integrationtest';
|
|
}
|