use of com.cloud.hypervisor.ovm3.objects.StoragePlugin.FileProperties in project cloudstack by apache.
the class StoragePluginTest method testStorageFileInfo.
@Test
public void testStorageFileInfo() throws Ovm3ResourceException {
con.setResult(results.simpleResponseWrapWrapper(FILECREATEXML));
FileProperties file = sPt.storagePluginGetFileInfo(FSMNTUUID, NFSHOST, FILE);
file.getName();
file.getUuid();
file.getType();
file.getSize();
}
Aggregations