Search in sources :

Example 1 with SVGPathSegLinetoVertical

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());
}
Also used : AtomicBoolean(java.util.concurrent.atomic.AtomicBoolean) SVGPathSegMoveto(net.sf.latexdraw.parser.svg.path.SVGPathSegMoveto) SVGPathSegLinetoVertical(net.sf.latexdraw.parser.svg.path.SVGPathSegLinetoVertical) Test(org.junit.jupiter.api.Test)

Aggregations

AtomicBoolean (java.util.concurrent.atomic.AtomicBoolean)1 SVGPathSegLinetoVertical (net.sf.latexdraw.parser.svg.path.SVGPathSegLinetoVertical)1 SVGPathSegMoveto (net.sf.latexdraw.parser.svg.path.SVGPathSegMoveto)1 Test (org.junit.jupiter.api.Test)1