Beispiel #1
0
 public function testGetLogFilePath()
 {
     $pc = new PageCache();
     $this->assertNull($pc->getLogFilePath());
     $pc->setLogFilePath('somepath/to/file');
     $this->assertAttributeEquals('somepath/to/file', 'log_file_path', $pc);
 }