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

testOffsetExists() public method

Tests the offsetExists() method.
public testOffsetExists ( )
    public function testOffsetExists()
    {
        $bag = new ArrayAttributeBag('foobar_storageKey');
        $bag['foo'] = 'bar';
        $this->assertTrue(isset($bag['foo']));
    }