Ejemplo n.º 1
0
 public function testSetDatadirBasePath()
 {
     $storage = new YamlStorage();
     $this->assertEquals(null, $storage->getDatadirBasePath());
     $storage->setDatadirBasePath('test_data');
     $this->assertEquals('test_data', $storage->getDatadirBasePath());
 }