destructr/tests/Drivers/MySQL/MySQLDriverTest.php

18 lines
520 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-09-19 21:20:20 +00:00
namespace Destructr\Drivers\MySQL;
2018-08-17 17:32:10 +00:00
use PHPUnit\Framework\TestCase;
2018-09-19 21:20:20 +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;
2018-09-19 21:20:20 +00:00
const DRIVER_DSN = 'mysql:host=mysql;dbname=destructr_test';
const DRIVER_USERNAME = 'root';
const DRIVER_PASSWORD = 'badpassword';
2018-08-17 17:32:10 +00:00
const DRIVER_OPTIONS = null;
}