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

31 lines
994 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;
2018-12-05 22:28:11 +00:00
/**
* @covers \JKingWeb\Arsse\Db\SQLite3\Result<extended>
2018-11-23 00:55:54 +00:00
*/
class TestResult extends \JKingWeb\Arsse\TestCase\Db\BaseResult {
use \JKingWeb\Arsse\Test\DatabaseDrivers\SQLite3;
2018-12-06 22:46:00 +00:00
protected static $createMeta = "CREATE TABLE arsse_meta(key text primary key not null, value text) without rowid";
protected static $createTest = "CREATE TABLE arsse_test(id integer primary key)";
2018-11-23 00:55:54 +00:00
public static function tearDownAfterClass() {
static::$interface->close();
static::$interface = null;
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]];
}
}