/** Tests that the handler doesn't attempt to deal with data is should not. */
  @Test
  public void capabilities() {
    CopyNumberAlterationCriterion criterion = new CopyNumberAlterationCriterion();

    CopyNumberAlterationCriterionHandler handler =
        CopyNumberAlterationCriterionHandler.create(criterion);
    assertFalse(handler.hasReporterCriterion());
    assertFalse(handler.isReporterMatchHandler());
    assertTrue(handler.hasCriterionSpecifiedSegmentValues());
    assertFalse(handler.hasCriterionSpecifiedReporterValues());
  }