Esempio n. 1
0
  @Test
  public void testRemoveAnnotation() throws Exception {
    MetabolicReaction mock = mock(MetabolicReaction.class);
    MetabolicReaction rxn = new BiochemRxnImpl(mock);

    Annotation annotation = mock(Annotation.class);

    rxn.removeAnnotation(annotation);
    verify(mock).removeAnnotation(annotation);
  }