package test.svg; 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.SVGPathSegCurvetoCubic; import net.sf.latexdraw.parsers.svg.path.SVGPathSegMoveto; import org.junit.Test; import java.text.ParseException; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertTrue; public class TestSVGPathSegCurvetoCubic implements SVGPathHandler { protected final SVGPathSegCurvetoCubic seg = new SVGPathSegCurvetoCubic(-1, -2, 3e1, 4e-1, -5e1, 6.5, true); protected int cpt = 0; @Test public void testGetters() { assertEquals(seg.getX(), -1., 0.0001); assertEquals(seg.getY(), -2., 0.0001); assertTrue(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 SVGPathSegCurvetoCubic); SVGPathSegCurvetoCubic seg2 = (SVGPathSegCurvetoCubic)pathSeg; assertEquals(seg.getX(), seg2.getX(), 0.0001); assertEquals(seg.getY(), seg2.getY(), 0.0001); assertEquals(seg.isRelative(), seg2.isRelative()); } }