@Before
  public void setUp() throws Exception {
    handler = new TestHandler();
    bb = handler.getEditBlackboard();
    geom = bb.newGeom("newFeature", ShapeType.LINE);

    shell = geom.getShell();
    bb.addPoint(10, 10, shell);
    bb.addPoint(11, 10, shell);
    bb.addPoint(10, 10, shell);
    bb.addPoint(2, 20, shell);
    bb.addPoint(2, 20, shell);
    bb.addPoint(4000, 8000, shell);
    bb.addPoint(4000, 8000, shell);
  }