1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-25 18:12:41 +00:00
Arsse/tests/cases/Db/SQLite3/TestResult.php

31 lines
846 B
PHP
Raw Normal View History

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 {
protected static $implementation = "SQLite 3";
2018-11-23 00:55:54 +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 {
$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]];
}
}