destructr/tests/Drivers/SQLite/SQLiteDriverIntegrationTest.php

22 lines
640 B
PHP
Raw Normal View History

2020-08-27 17:42:11 +00:00
<?php
/* Destructr | https://github.com/jobyone/destructr | MIT License */
declare (strict_types = 1);
namespace Destructr\Drivers\SQLite;
use Destructr\Drivers\AbstractSQLDriverIntegrationTest;
2020-08-27 17:42:11 +00:00
use Destructr\Drivers\SQLiteDriver;
class SQLiteDriverIntegrationTest extends AbstractSQLDriverIntegrationTest
2020-08-27 17:42:11 +00:00
{
const DRIVER_CLASS = SQLiteDriver::class;
const DRIVER_DSN = 'sqlite:'.__DIR__.'/integration.test.sqlite';
const DRIVER_USERNAME = 'root';
const DRIVER_PASSWORD = '';
const DRIVER_OPTIONS = null;
public static function setUpBeforeClass()
{
@unlink(__DIR__.'/integration.test.sqlite');
}
2020-08-27 17:42:11 +00:00
}