HummingBirdAnimeClient/tests/Ion/Di/ContainerAwareTest.php

59 lines
1.3 KiB
PHP
Raw Normal View History

<?php declare(strict_types=1);
/**
2020-03-12 11:45:11 -04:00
* Hummingbird Anime List Client
*
2020-03-12 11:45:11 -04:00
* An API client for Kitsu to manage anime and manga watch lists
*
2021-02-04 11:57:01 -05:00
* PHP version 8
*
2020-03-12 11:45:11 -04:00
* @package HummingbirdAnimeClient
* @author Timothy J. Warren <tim@timshomepage.net>
2021-01-13 01:52:03 -05:00
* @copyright 2015 - 2021 Timothy J. Warren
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2020-12-10 17:06:50 -05:00
* @version 5.2
2020-03-12 11:45:11 -04:00
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\Ion\Tests\Di;
use Aviat\Ion\Di\{Container, ContainerAware, ContainerInterface};
2020-03-12 09:52:45 -04:00
use Aviat\Ion\Tests\IonTestCase;
2022-03-04 12:19:47 -05:00
class Aware
{
use ContainerAware;
public function __construct(ContainerInterface $container)
{
$this->container = $container;
}
}
2022-03-04 12:19:47 -05:00
/**
* @internal
*/
final class ContainerAwareTest extends IonTestCase
{
2020-04-10 16:35:01 -04:00
protected Aware $aware;
2022-03-04 12:19:47 -05:00
protected function setUp(): void
{
$this->container = new Container();
$this->aware = new Aware($this->container);
}
public function testContainerAwareTrait(): void
{
// The container was set in setup
// check that the get method returns the same
$this->assertSame($this->container, $this->aware->getContainer());
$container2 = new Container([
'foo' => 'bar',
2022-03-04 12:19:47 -05:00
'baz' => 'foobar',
]);
$this->aware->setContainer($container2);
$this->assertSame($container2, $this->aware->getContainer());
}
2022-03-04 12:19:47 -05:00
}