2018-08-17 17:32:10 +00:00
|
|
|
<?php
|
2020-08-26 15:52:25 +00:00
|
|
|
/* Destructr | https://github.com/jobyone/destructr | MIT License */
|
|
|
|
declare (strict_types = 1);
|
2018-09-14 18:17:54 +00:00
|
|
|
namespace Destructr\Drivers\MySQL;
|
2018-08-17 17:32:10 +00:00
|
|
|
|
2018-09-14 18:17:54 +00:00
|
|
|
use Destructr\Drivers\AbstractDriverTest;
|
|
|
|
use Destructr\Drivers\MySQLDriver;
|
2018-08-17 17:32:10 +00:00
|
|
|
|
|
|
|
class MySQLDriverTest extends AbstractDriverTest
|
|
|
|
{
|
|
|
|
const DRIVER_CLASS = MySQLDriver::class;
|
2020-06-23 22:00:20 +00:00
|
|
|
const DRIVER_DSN = 'mysql:host=127.0.0.1;dbname=test';
|
2018-09-14 18:17:54 +00:00
|
|
|
const DRIVER_USERNAME = 'root';
|
2020-06-23 21:56:28 +00:00
|
|
|
const DRIVER_PASSWORD = '';
|
2018-08-17 17:32:10 +00:00
|
|
|
const DRIVER_OPTIONS = null;
|
|
|
|
}
|