Ejemplo n.º 1
0
 public function testPassingStorageViaParamOverridesStorageInConfig()
 {
     $storage = new Session\Storage\ArrayStorage();
     $manager = new TestAsset\TestManager(array('class' => 'Zend\\Session\\Configuration\\StandardConfiguration', 'storage' => 'Zend\\Session\\Storage\\SessionStorage'), $storage);
     $this->assertSame($storage, $manager->getStorage());
 }