2019-03-19 02:49:47 +00:00
|
|
|
<?php
|
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2021-04-14 15:17:01 +00:00
|
|
|
|
2019-03-19 02:49:47 +00:00
|
|
|
namespace JKingWeb\Arsse\TestCase\REST\Fever\PDO;
|
|
|
|
|
2024-12-28 04:39:44 +00:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
|
|
|
|
|
|
#[Group("optional")]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\REST\Fever\API::class)]
|
2019-03-19 02:49:47 +00:00
|
|
|
class TestAPI extends \JKingWeb\Arsse\TestCase\REST\Fever\TestAPI {
|
|
|
|
use \JKingWeb\Arsse\Test\PDOTest;
|
|
|
|
}
|