2018-12-21 15:14:26 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\TestCase\Db\MySQLPDO;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group slow
|
2019-01-14 04:17:19 +00:00
|
|
|
* @group optional
|
2018-12-21 15:14:26 +00:00
|
|
|
* @group coverageOptional
|
|
|
|
* @covers \JKingWeb\Arsse\Database<extended>
|
|
|
|
* @covers \JKingWeb\Arsse\Misc\Query<extended>
|
|
|
|
*/
|
|
|
|
class TestDatabase extends \JKingWeb\Arsse\TestCase\Database\Base {
|
2019-01-12 17:43:06 +00:00
|
|
|
use \JKingWeb\Arsse\TestCase\DatabaseDrivers\MySQLPDO;
|
2018-12-21 15:14:26 +00:00
|
|
|
|
|
|
|
protected function nextID(string $table): int {
|
|
|
|
return (int) (static::$drv->query("SELECT auto_increment from information_schema.tables where table_name = '$table'")->getValue() ?? 1);
|
|
|
|
}
|
|
|
|
}
|