2018-11-23 00:55:54 +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\SQLite3;
|
|
|
|
|
|
|
|
use JKingWeb\Arsse\Test\DatabaseInformation;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\Result<extended>
|
|
|
|
*/
|
|
|
|
class TestResult extends \JKingWeb\Arsse\TestCase\Db\BaseResult {
|
2018-11-27 19:26:33 +00:00
|
|
|
protected static $implementation = "SQLite 3";
|
2018-11-23 00:55:54 +00:00
|
|
|
|
2018-11-27 19:26:33 +00:00
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
if (static::$interface) {
|
|
|
|
static::$interface->close();
|
|
|
|
}
|
|
|
|
parent::tearDownAfterClass();
|
2018-11-23 00:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function makeResult(string $q): array {
|
2018-11-27 19:26:33 +00:00
|
|
|
$set = static::$interface->query($q);
|
|
|
|
$rows = static::$interface->changes();
|
|
|
|
$id = static::$interface->lastInsertRowID();
|
2018-11-23 00:55:54 +00:00
|
|
|
return [$set, [$rows, $id]];
|
|
|
|
}
|
|
|
|
}
|