예제 #1
0
  /**
   * If we delete and then try to resolve a segment start ends at the start boundary of the deleted
   * segment, we do not want the deleted segment to be included in the resolved interval.
   */
  @Test
  public void testResolve() {
    top.delete(4, 7);

    final ImmutableInterval ri = new ImmutableInterval(3, 4);
    final Interval i = top.resolve(ri);

    assertEquals(1, i.getLength());
  }