Ejemplo n.º 1
0
 public function testConfig()
 {
     $this->assertSame(array(), DAV::getConfig(), 'DAV::getConfig() should return an empty array before setting any configuration options');
     DAV::setDebugFile('/tmp/debug.txt');
     $this->assertSame(array('debug' => array('file' => '/tmp/debug.txt')), DAV::getConfig(), 'DAV::getConfig() should contain a 2 dimensional array containing the path to the de bug file');
 }