Essence\Di\ContainerTest::testConfigure PHP Method

testConfigure() public method

public testConfigure ( )
    public function testConfigure()
    {
        $ref = $this->Container->configure(['foo' => 'bar']);
        $this->assertEquals('bar', $this->Container->get('foo'));
        $this->assertEquals($this->Container, $ref);
    }