@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)); }
@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")); }
@Test public void testCreateWithDelegate() throws Exception { BiochemicalReaction rxn = BiochemRxnImpl.createWithDelegate(); assertNotNull(rxn.getMetabolicReaction()); }