예제 #1
0
 public function testVerifyInvalid()
 {
     $templates = array("template1.tpl" => filemtime(FENOM_RESOURCES . '/template/template1.tpl'), "template2.tpl" => filemtime(FENOM_RESOURCES . '/template/template2.tpl') + 1);
     clearstatcache();
     $this->assertFalse($this->provider->verify($templates));
     clearstatcache();
     $templates = array("template1.tpl" => filemtime(FENOM_RESOURCES . '/template/template1.tpl'), "unexists.tpl" => 1234567890);
     $this->assertFalse($this->provider->verify($templates));
 }