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