Contao\CoreBundle\Test\Session\Attribute\ArrayAttributeBagTest::testOffsetGet PHP Метод

testOffsetGet() публичный Метод

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