Esempio n. 1
0
 public function testMethod_writeAutoloadingMapApc()
 {
     if (extension_loaded('apc')) {
         $array = array('class' => 'file');
         $this->assertTrue(Loader::writeAutoloadingMapApc($array));
         $this->assertIdentical($array, Loader::readAutoloadingMapApc());
     }
 }