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
|
|
|
*
|
2021-02-04 11:57:01 -05:00
|
|
|
* PHP version 8
|
2017-02-15 13:08:17 -05:00
|
|
|
*
|
2017-02-15 16:13:32 -05:00
|
|
|
* @package HummingbirdAnimeClient
|
2017-02-15 13:08:17 -05:00
|
|
|
* @author Timothy J. Warren <tim@timshomepage.net>
|
2021-01-13 01:52:03 -05:00
|
|
|
* @copyright 2015 - 2021 Timothy J. Warren
|
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
|
2017-03-07 20:53:58 -05:00
|
|
|
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
|
2017-02-15 13:08:17 -05:00
|
|
|
*/
|
2016-04-19 14:51:58 -04:00
|
|
|
|
2017-02-15 11:49:38 -05:00
|
|
|
namespace Aviat\AnimeClient\Tests\Command;
|
|
|
|
|
2016-04-19 14:51:58 -04:00
|
|
|
use Aviat\AnimeClient\Command\BaseCommand;
|
2017-02-15 16:40:18 -05:00
|
|
|
use Aviat\AnimeClient\Tests\AnimeClientTestCase;
|
2016-10-20 22:32:17 -04:00
|
|
|
use Aviat\Ion\Friend;
|
|
|
|
use ConsoleKit\Console;
|
2019-12-09 14:34:23 -05:00
|
|
|
use Aviat\Ion\Di\Container;
|
|
|
|
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
|
|
|
|
}
|
2016-04-19 14:51:58 -04:00
|
|
|
|
2017-02-15 16:40:18 -05:00
|
|
|
class BaseCommandTest extends AnimeClientTestCase {
|
2021-02-23 13:00:30 -05:00
|
|
|
protected Command $base;
|
|
|
|
protected Friend $friend;
|
2019-12-06 09:15:49 -05:00
|
|
|
|
|
|
|
public function setUp(): void {
|
2019-12-09 14:34:23 -05:00
|
|
|
$this->base = new Command(new Console());
|
2016-04-19 14:51:58 -04:00
|
|
|
$this->friend = new Friend($this->base);
|
|
|
|
}
|
|
|
|
|
2019-12-09 14:34:23 -05:00
|
|
|
public function testSetupContainer(): void
|
2016-04-19 14:51:58 -04:00
|
|
|
{
|
|
|
|
$container = $this->friend->setupContainer();
|
2019-12-09 14:34:23 -05:00
|
|
|
$this->assertInstanceOf(Container::class, $container);
|
2016-04-19 14:51:58 -04:00
|
|
|
}
|
|
|
|
}
|