use of com.cloud.utils.qemu.QemuImg.PhysicalDiskFormat in project cosmic by MissionCriticalCloud.
the class QemuImgFileTest method testFileNameAndSizeAndFormatAtContructor.
@Test
public void testFileNameAndSizeAndFormatAtContructor() {
final PhysicalDiskFormat format = PhysicalDiskFormat.RAW;
final long size = 1024;
final String filename = "/tmp/test-image.qcow2";
final QemuImgFile file = new QemuImgFile(filename, size, format);
assertEquals(file.getFileName(), filename);
assertEquals(file.getSize(), size);
assertEquals(file.getFormat(), format);
}
Aggregations