Package org.tuba.spatschorke.diploma.operation.sdedit.image

Examples of org.tuba.spatschorke.diploma.operation.sdedit.image.ImageGenerator.process()


  public void test() {
    SDEditFile sdeditFile = new SDEditFile(new File(
        "test" + File.separator + "test.sdx")); //$NON-NLS-1$ //$NON-NLS-2$
    ImageGenerator generator = new ImageGenerator();

    ImageRepresentation image = generator.process(sdeditFile, null);
    Assert.assertNotNull(image);
    File f = image.getImageFile();
    Assert.assertNotNull(f);
    Assert.assertTrue(f.exists());
    Assert.assertTrue(f.isFile());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.