コード例 #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
 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"));
 }
コード例 #3
0
ファイル: BiochemRxnImplTest.java プロジェクト: johnmay/mdk
 @Test
 public void testCreateWithDelegate() throws Exception {
   BiochemicalReaction rxn = BiochemRxnImpl.createWithDelegate();
   assertNotNull(rxn.getMetabolicReaction());
 }