use of net.sf.latexdraw.parser.svg.path.SVGPathSegLinetoVertical in project latexdraw by arnobl.
the class TestSVGPathSegLinetoVertical method testToString.
@Test
public void testToString() {
final AtomicBoolean done = new AtomicBoolean(false);
final SVGPathSegMoveto m = new SVGPathSegMoveto(0d, 0d, false);
SVGParserUtils.INSTANCE.parseSVGPath(m.toString() + " " + seg.toString(), pathSeg -> {
if (pathSeg instanceof SVGPathSegMoveto) {
return;
}
done.set(true);
final SVGPathSegLinetoVertical seg2 = (SVGPathSegLinetoVertical) pathSeg;
assertEquals(seg.getY(), seg2.getY(), 0.0001);
assertEquals(seg.isRelative(), seg2.isRelative());
});
assertTrue(done.get());
}
Aggregations