destructr/tests/Drivers/MySQL/MySQLDriverIntegrationTest.php

18 lines
550 B
PHP
Raw Normal View History

2018-09-14 18:17:54 +00:00
<?php
/* Destructr | https://github.com/jobyone/destructr | MIT License */
declare (strict_types = 1);
2018-09-14 18:17:54 +00:00
namespace Destructr\Drivers\MySQL;
use Destructr\Drivers\AbstractDriverIntegrationTest;
use Destructr\Drivers\MySQLDriver;
class MySQLDriverIntegrationTest extends AbstractDriverIntegrationTest
{
const DRIVER_CLASS = 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';
}