Example #1
0
 /**
  * @group ZF-9092
  */
 public function testSettingLifetimeAsEmptyIsInterpretedAsNull()
 {
     $config = new Zend_Config(array('lifetime' => '', 'caching' => true));
     $test = new Zend_Cache_Core();
     $test->setConfig($config);
     $this->assertSame(NULL, $test->getOption('lifetime'));
 }