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

testOffsetSet() public method

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