コード例 #1
0
ファイル: StorageTest.php プロジェクト: mbcraft/piol
 function testXmlStorageExists()
 {
     StorageFactory::setStorageRoot("/test/permanent_storage/");
     $storage = StorageFactory::getXMLStorage("my_folder", "storage_03");
     $this->assertTrue($storage->exists(), "Lo storage non esiste!!");
     $this->assertEquals("my_folder", $storage->getFolder());
     $this->assertEquals(StorageFactory::XML_STORAGE, $storage->getStorageType(), "Il tipo di storage non corrisponde!!");
     StorageFactory::setStorageRoot(StorageFactory::getDefaultStorageRoot());
 }