*/ class TestResult extends \JKingWeb\Arsse\TestCase\Db\BaseResult { protected static $implementation = "SQLite 3"; public static function tearDownAfterClass() { if (static::$interface) { static::$interface->close(); } parent::tearDownAfterClass(); } protected function makeResult(string $q): array { $set = static::$interface->query($q); $rows = static::$interface->changes(); $id = static::$interface->lastInsertRowID(); return [$set, [$rows, $id]]; } }