package test.svg; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.text.ParseException; import net.sf.latexdraw.parsers.svg.parsers.SVGPathParser; import net.sf.latexdraw.parsers.svg.path.SVGPathHandler; import net.sf.latexdraw.parsers.svg.path.SVGPathSeg; import net.sf.latexdraw.parsers.svg.path.SVGPathSegLinetoHorizontal; import net.sf.latexdraw.parsers.svg.path.SVGPathSegMoveto; import org.junit.Test; public class TestSVGPathSegLinetoHorizontal implements SVGPathHandler { protected final SVGPathSegLinetoHorizontal seg = new SVGPathSegLinetoHorizontal(-1, false); protected int cpt = 0; @Test public void testGetters() { assertEquals(seg.getX(), -1., 0.0001); assertFalse(seg.isRelative()); } @Test public void testToString() throws ParseException { SVGPathSegMoveto m = new SVGPathSegMoveto(0, 0, false); SVGPathParser parser = new SVGPathParser(m.toString() + " " + seg.toString(), this); //$NON-NLS-1$ parser.parse(); } @Override public void onPathSeg(SVGPathSeg pathSeg) { if(pathSeg instanceof SVGPathSegMoveto && cpt == 0) { cpt++; return; } assertTrue(pathSeg instanceof SVGPathSegLinetoHorizontal); SVGPathSegLinetoHorizontal seg2 = (SVGPathSegLinetoHorizontal)pathSeg; assertEquals(seg.getX(), seg2.getX(), 0.0001); assertEquals(seg.isRelative(), seg2.isRelative()); } }