Package org.martinlaw.bo

Examples of org.martinlaw.bo.MatterTypeAnnexDetail.refresh()


   */
  protected void testAnnexDetails(
      final List<MatterTypeAnnexDetail> annexDetails, int listSize, String annexTypeName, Long sequenceValue) {
    assertEquals("there should be an annex detail", listSize, annexDetails.size());
    final MatterTypeAnnexDetail matterTypeAnnexDetail = annexDetails.get(0);
    matterTypeAnnexDetail.refresh();
    assertEquals("annex type name differs", annexTypeName, matterTypeAnnexDetail.getAnnexType().getName());
    assertEquals("sequence value differs", sequenceValue, matterTypeAnnexDetail.getSequence());
  }
 
  @Test
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.