2018-11-23 04:18:20 +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;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\Statement<extended>
|
|
|
|
* @covers \JKingWeb\Arsse\Db\SQLite3\ExceptionBuilder */
|
|
|
|
class TestStatement extends \JKingWeb\Arsse\TestCase\Db\BaseStatement {
|
2018-11-27 19:26:33 +00:00
|
|
|
protected static $implementation = "SQLite 3";
|
2018-11-23 04:18:20 +00:00
|
|
|
|
2018-11-27 19:26:33 +00:00
|
|
|
public static function tearDownAfterClass() {
|
|
|
|
static::$interface->close();
|
2018-12-10 18:17:04 +00:00
|
|
|
static::$interface = null;
|
2018-11-27 19:26:33 +00:00
|
|
|
parent::tearDownAfterClass();
|
2018-11-23 04:18:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function makeStatement(string $q, array $types = []): array {
|
2018-11-27 19:26:33 +00:00
|
|
|
return [static::$interface, static::$interface->prepare($q), $types];
|
2018-11-23 04:18:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
protected function decorateTypeSyntax(string $value, string $type): string {
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
}
|