2018-11-25 04:18:17 +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\SQLite3PDO;
|
|
|
|
|
2018-12-05 22:28:11 +00:00
|
|
|
/**
|
2018-11-25 04:18:17 +00:00
|
|
|
* @covers \JKingWeb\Arsse\Database<extended>
|
|
|
|
*/
|
2019-09-11 19:25:26 +00:00
|
|
|
class TestDatabase extends \JKingWeb\Arsse\TestCase\Database\AbstractTest {
|
2019-08-25 17:19:11 +00:00
|
|
|
use \JKingWeb\Arsse\Test\DatabaseDrivers\SQLite3PDO;
|
2018-11-25 04:18:17 +00:00
|
|
|
|
|
|
|
protected function nextID(string $table): int {
|
|
|
|
return (int) static::$drv->query("SELECT (case when max(id) then max(id) else 0 end)+1 from $table")->getValue();
|
|
|
|
}
|
|
|
|
}
|