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

testInstantiation() public method

Tests the object instantiation.
public testInstantiation ( )
    public function testInstantiation()
    {
        $adapter = new ArrayAttributeBag(new AttributeBag('foobar_storageKey'));
        $this->assertInstanceOf('Contao\\CoreBundle\\Session\\Attribute\\ArrayAttributeBag', $adapter);
        $this->assertInstanceOf('ArrayAccess', $adapter);
    }