Package org.martinlaw.keyvalues

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

Related Classes of org.martinlaw.keyvalues.MatterConsiderationKeyValues

Copyright © 2018 www.massapicom. 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.