Dietcube\Components\ContainerAwareTraitTest::testToGetContainer PHP Method

testToGetContainer() public method

public testToGetContainer ( )
    public function testToGetContainer()
    {
        $container = new \Pimple\Container();
        $obj = new ConcreteComponentWithContainer();
        // not yet set
        $this->assertNull($obj->getContainer());
        $obj->setContainer($container);
        $this->assertInstanceOf('\\Pimple\\Container', $obj->getContainer());
    }
ContainerAwareTraitTest