use of uk.ac.bbsrc.tgac.miso.core.data.TissueType in project miso-lims by miso-lims.
the class HibernateTissueTypeDaoIT method testGetUsage.
@Test
public void testGetUsage() throws IOException {
TissueType tt = (TissueType) getSessionFactory().getCurrentSession().get(TissueTypeImpl.class, 1L);
assertEquals("Test Type", tt.getAlias());
assertEquals(5L, sut.getUsage(tt));
}
Aggregations