Examples of MatterClientNamesKeyValues


Examples of org.martinlaw.keyvalues.MatterClientNamesKeyValues

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

    assertFalse("key values list should not be empty", result.isEmpty());
    assertEquals("key values list size differs", 2, result.size());
    assertEquals("client name differs", "client1", result.get(0).getKey());
  }
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.