HummingBirdAnimeClient/tests/AnimeClient/Command/BaseCommandTest.php

47 lines
1.1 KiB
PHP
Raw Permalink Normal View History

2017-02-15 13:08:17 -05:00
<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2017-02-15 13:08:17 -05:00
*
2018-08-22 13:48:27 -04:00
* An API client for Kitsu to manage anime and manga watch lists
2017-02-15 13:08:17 -05:00
*
2023-07-13 11:08:05 -04:00
* PHP version 8.1
2017-02-15 13:08:17 -05:00
*
2023-07-13 11:08:05 -04:00
* @copyright 2015 - 2023 Timothy J. Warren <tim@timshome.page>
2017-02-15 13:08:17 -05:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2023-07-13 11:08:05 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
2017-02-15 13:08:17 -05:00
*/
2017-02-15 11:49:38 -05:00
namespace Aviat\AnimeClient\Tests\Command;
use Aviat\AnimeClient\Command\BaseCommand;
2017-02-15 16:40:18 -05:00
use Aviat\AnimeClient\Tests\AnimeClientTestCase;
2022-03-04 12:19:47 -05:00
use Aviat\Ion\Di\Container;
2016-10-20 22:32:17 -04:00
use Aviat\Ion\Friend;
use ConsoleKit\Console;
2019-12-09 14:34:23 -05:00
2022-03-04 12:19:47 -05:00
class Command extends BaseCommand
{
2019-12-09 14:34:23 -05:00
}
2022-03-04 12:19:47 -05:00
/**
* @internal
*/
final class BaseCommandTest extends AnimeClientTestCase
{
protected Command $base;
protected Friend $friend;
2019-12-06 09:15:49 -05:00
2022-03-04 12:19:47 -05:00
protected function setUp(): void
{
2019-12-09 14:34:23 -05:00
$this->base = new Command(new Console());
$this->friend = new Friend($this->base);
}
2019-12-09 14:34:23 -05:00
public function testSetupContainer(): void
{
$container = $this->friend->setupContainer();
2019-12-09 14:34:23 -05:00
$this->assertInstanceOf(Container::class, $container);
}
2022-03-04 12:19:47 -05:00
}