2018-09-14 18:17:54 +00:00
|
|
|
<?php
|
|
|
|
/* Destructr | https://gitlab.com/byjoby/destructr | MIT License */
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Destructr\Drivers\MySQL;
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use Destructr\Drivers\AbstractDriverIntegrationTest;
|
|
|
|
use Destructr\Drivers\MySQLDriver;
|
|
|
|
|
|
|
|
class MySQLDriverIntegrationTest extends AbstractDriverIntegrationTest
|
|
|
|
{
|
|
|
|
const DRIVER_CLASS = \Destructr\Drivers\MySQLDriver::class;
|
2020-06-23 21:56:28 +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-09-14 18:17:54 +00:00
|
|
|
const DRIVER_OPTIONS = null;
|
|
|
|
const TEST_TABLE = 'integrationtest';
|
|
|
|
}
|