コード例 #1
0
ファイル: BiochemRxnImplTest.java プロジェクト: johnmay/mdk
 @Test
 public void testCreateWithDelegate_UUID() throws Exception {
   UUID uuid = UUID.nameUUIDFromBytes("uuid".getBytes());
   BiochemicalReaction rxn = BiochemRxnImpl.createWithDelegate(uuid);
   assertNotNull(rxn.getMetabolicReaction());
   assertThat(rxn.getMetabolicReaction().uuid(), is(uuid));
 }
コード例 #2
0
ファイル: BiochemRxnImplTest.java プロジェクト: johnmay/mdk
  @Test(expected = UnsupportedOperationException.class)
  @SuppressWarnings("unchecked")
  public void testEncapsulatedModifiers() throws Exception {
    Collection modifiers = mock(Collection.class);
    BiochemicalReaction rxn = new BiochemRxnImpl(mock(MetabolicReaction.class), modifiers);

    rxn.getModifiers().add(mock(GeneProduct.class));
  }
コード例 #3
0
ファイル: BiochemRxnImplTest.java プロジェクト: johnmay/mdk
 @Test
 public void testCreateWithDelegate_Name() throws Exception {
   Identifier id = mock(Identifier.class);
   BiochemicalReaction rxn = BiochemRxnImpl.createWithDelegate(id, "abrv", "name");
   assertNotNull(rxn.getMetabolicReaction());
   assertThat(rxn.getMetabolicReaction().getIdentifier(), is(id));
   assertThat(rxn.getMetabolicReaction().getAbbreviation(), is("abrv"));
   assertThat(rxn.getMetabolicReaction().getName(), is("name"));
 }
コード例 #4
0
ファイル: BiochemRxnImplTest.java プロジェクト: johnmay/mdk
  @Test
  @SuppressWarnings("unchecked")
  public void testRemoveModifiers() throws Exception {
    Collection modifiers = mock(Collection.class);
    BiochemicalReaction rxn = new BiochemRxnImpl(mock(MetabolicReaction.class), modifiers);

    GeneProduct gp = mock(GeneProduct.class);
    rxn.removeModifier(gp);
    verify(modifiers).remove(gp);
  }
コード例 #5
0
ファイル: BiochemRxnImplTest.java プロジェクト: johnmay/mdk
 @Test
 public void testCreateWithDelegate() throws Exception {
   BiochemicalReaction rxn = BiochemRxnImpl.createWithDelegate();
   assertNotNull(rxn.getMetabolicReaction());
 }