Package org.joshy.sketch.actions.io.svg

Source Code of org.joshy.sketch.actions.io.svg.SVGImportTest

package org.joshy.sketch.actions.io.svg;

import org.joshy.sketch.actions.ImportAction;
import org.joshy.sketch.model.SketchDocument;
import org.junit.Test;

import java.net.URL;

/**
* Created by IntelliJ IDEA.
* User: joshmarinacci
* Date: Dec 3, 2010
* Time: 8:15:23 AM
* To change this template use File | Settings | File Templates.
*/
public class SVGImportTest {
    @Test
    public void loadTest1() throws Exception {
        URL url = SVGImportTest.class.getResource("import_01.svg");
        SketchDocument doc = ImportAction.importSVG(url);
    }
}
TOP

Related Classes of org.joshy.sketch.actions.io.svg.SVGImportTest

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.