2017-12-31 22:24:40 +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
|
|
|
|
2017-12-31 22:24:40 +00:00
|
|
|
namespace JKingWeb\Arsse\TestCase\REST\TinyTinyRSS\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\TinyTinyRSS\API::class)]
|
|
|
|
#[CoversClass(\JKingWeb\Arsse\REST\TinyTinyRSS\Exception::class)]
|
2017-12-31 22:24:40 +00:00
|
|
|
class TestAPI extends \JKingWeb\Arsse\TestCase\REST\TinyTinyRSS\TestAPI {
|
2017-12-31 22:30:30 +00:00
|
|
|
use \JKingWeb\Arsse\Test\PDOTest;
|
2018-01-12 14:48:33 +00:00
|
|
|
}
|