15 lines
427 B
PHP
15 lines
427 B
PHP
<?php
|
|
/* Destructr | https://gitlab.com/byjoby/destructr | MIT License */
|
|
declare(strict_types=1);
|
|
namespace Destructr\Drivers;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class MySQLDriverTest extends AbstractDriverTest
|
|
{
|
|
const DRIVER_CLASS = MySQLDriver::class;
|
|
const DRIVER_DSN = 'mysql:host=127.0.0.1;dbname=phpunit';
|
|
const DRIVER_USERNAME = 'travis';
|
|
const DRIVER_PASSWORD = null;
|
|
const DRIVER_OPTIONS = null;
|
|
}
|