Ejemplo n.º 1
0
 /**
  * @group ZF-9092
  */
 public function testSettingLifetimeAsEmptyIsInterpretedAsNull()
 {
     $config = new ZendConfig(array('lifetime' => '', 'caching' => true));
     $test = new Cache\Frontend\Core();
     $test->setConfig($config);
     $this->assertSame(NULL, $test->getOption('lifetime'));
 }