Contao\CoreBundle\Test\Session\Attribute\ArrayAttributeBagTest::testOffsetGet PHP Method

testOffsetGet() public method

Tests the offsetGet() method.
public testOffsetGet ( )
    public function testOffsetGet()
    {
        $bag = new ArrayAttributeBag('foobar_storageKey');
        $bag['foo'] = 'bar';
        $this->assertSame('bar', $bag['foo']);
    }