public class ImageUtilsTestTest {
@Test
public void testCreateImage() throws Exception {
final File dest = new File("src.iso");
ImageUtils.createImage(new Work(new TestContext()), new File("src"), dest);
assertTrue(dest.exists());
FileUtils.forceDelete(dest);
}