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

26 lines
841 B
PHP
Raw Normal View History

2017-03-10 02:39:42 +00:00
<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
2017-03-10 02:39:42 +00:00
declare(strict_types=1);
2017-12-22 16:41:54 +00:00
namespace JKingWeb\Arsse\TestCase\Db\SQLite3;
2017-03-10 02:39:42 +00:00
2017-08-29 14:50:31 +00:00
/**
2017-07-20 22:36:03 +00:00
* @covers \JKingWeb\Arsse\Db\SQLite3\Driver<extended>
* @covers \JKingWeb\Arsse\Db\SQLite3\ExceptionBuilder */
class TestUpdate extends \JKingWeb\Arsse\TestCase\Db\BaseUpdate {
use \JKingWeb\Arsse\Test\DatabaseDrivers\SQLite3;
protected static $minimal1 = "create table arsse_meta(key text primary key not null, value text); pragma user_version=1";
protected static $minimal2 = "pragma user_version=2";
2019-10-16 18:42:43 +00:00
public static function tearDownAfterClass(): void {
if (static::$interface) {
static::$interface->close();
static::$interface = null;
}
parent::tearDownAfterClass();
}
2017-08-29 14:50:31 +00:00
}