destructr/tests/Drivers/MySQLDriverTest.php

16 lines
423 B
PHP
Raw Normal View History

2018-08-17 17:32:10 +00:00
<?php
2018-08-17 22:32:26 +00:00
/* Destructr | https://gitlab.com/byjoby/destructr | MIT License */
2018-08-17 17:32:10 +00:00
declare(strict_types=1);
2018-08-17 22:32:26 +00:00
namespace Destructr\Drivers;
2018-08-17 17:32:10 +00:00
use PHPUnit\Framework\TestCase;
class MySQLDriverTest extends AbstractDriverTest
{
const DRIVER_CLASS = MySQLDriver::class;
2018-08-18 15:59:30 +00:00
const DRIVER_DSN = 'mysql:host=mysql;dbname=ci';
const DRIVER_USERNAME = 'ci_password';
2018-08-17 17:32:10 +00:00
const DRIVER_PASSWORD = null;
const DRIVER_OPTIONS = null;
}