* @copyright 2015 - 2020 Timothy J. Warren * @license http://www.opensource.org/licenses/mit-license.html MIT License * @version 5 * @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient */ namespace Aviat\Ion\Tests\Di; use Aviat\Ion\Di\{Container, ContainerAware, ContainerInterface}; use Aviat\Ion\Tests\IonTestCase; class Aware { use ContainerAware; public function __construct(ContainerInterface $container) { $this->container = $container; } } class ContainerAwareTest extends IonTestCase { protected Aware $aware; public 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', 'baz' => 'foobar' ]); $this->aware->setContainer($container2); $this->assertSame($container2, $this->aware->getContainer()); } }