Examples of MatterConsiderationKeyValues


Examples of org.martinlaw.keyvalues.MatterConsiderationKeyValues

   * @throws InstantiationException
   */
  @Test
  public void testMatterConsiderationKeyValues() throws InstantiationException,
      IllegalAccessException {
    MatterConsiderationKeyValues keyValues = new MatterConsiderationKeyValues();
    List<KeyValue> result = keyValues.getKeyValues(getMockForm());

    assertFalse("key values list should not be empty", result.isEmpty());
    assertEquals("key values list size differs", 1, result.size());
    assertEquals("value differs", "Legal fee - TZS - 41000.00", result.get(0).getValue());
  }
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.