1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-23 03:20:33 +00:00
Arsse/tests/cases/Db/SQLite3/TestUpdate.php

27 lines
842 B
PHP
Raw Normal View History

2017-03-09 21:39:42 -05:00
<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
2017-03-09 21:39:42 -05:00
declare(strict_types=1);
2021-04-14 11:17:01 -04:00
2017-12-22 11:41:54 -05:00
namespace JKingWeb\Arsse\TestCase\Db\SQLite3;
2017-03-09 21:39:42 -05:00
2017-08-29 10:50:31 -04:00
/**
2017-07-20 18:36:03 -04: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 14:42:43 -04:00
public static function tearDownAfterClass(): void {
if (static::$interface) {
static::$interface->close();
static::$interface = null;
}
parent::tearDownAfterClass();
}
2017-08-29 10:50:31 -04:00
}