Package test.svg

Source Code of test.svg.TestSVGPathSegCurvetoCubicSmooth

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.SVGPathSegCurvetoCubicSmooth;
import net.sf.latexdraw.parsers.svg.path.SVGPathSegMoveto;

import org.junit.Test;

public class TestSVGPathSegCurvetoCubicSmooth implements SVGPathHandler {
  protected final SVGPathSegCurvetoCubicSmooth seg = new SVGPathSegCurvetoCubicSmooth(0.8E2, -2., -5.e-1, .5, false);
  protected int cpt = 0;

  @Test
  public void testGetters() {
    assertEquals(seg.getX(), 0.8E2, 0.0001);
    assertEquals(seg.getX2(), -5.e-1, 0.0001);
    assertEquals(seg.getY(), -2., 0.0001);
    assertEquals(seg.getY2(), .5, 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 SVGPathSegCurvetoCubicSmooth);

    SVGPathSegCurvetoCubicSmooth seg2 = (SVGPathSegCurvetoCubicSmooth)pathSeg;

    assertEquals(seg.getX(), seg2.getX(), 0.0001);
    assertEquals(seg.getX2(), seg2.getX2(), 0.0001);
    assertEquals(seg.getY(), seg2.getY(), 0.0001);
    assertEquals(seg.getY2(), seg2.getY2(), 0.0001);
    assertEquals(seg.isRelative(), seg2.isRelative());
  }
}
TOP

Related Classes of test.svg.TestSVGPathSegCurvetoCubicSmooth

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.