mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-14 20:02:41 +00:00
16 lines
428 B
PHP
16 lines
428 B
PHP
<?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;
|
|
|
|
/**
|
|
* @covers \JKingWeb\Arsse\Database<extended>
|
|
* @group optional */
|
|
class TestDatabaseSubscriptionSQLite3PDO extends Test\AbstractTest {
|
|
use Test\Database\Setup;
|
|
use Test\Database\DriverSQLite3PDO;
|
|
use Test\Database\SeriesSubscription;
|
|
}
|