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