Пример #1
0
  /** Test of getValue method, of class arda.md.javaclient.AttributeSet. */
  public void testGetValue() {
    System.out.println("getValue Begin");

    for (int i = 0; i < keys.length; i++) {
      String result = instance.getValue(keys[i]);
      assertEquals(values[i], result);
      System.out.println("key : " + keys[i]);
      System.out.println("value : " + values[i]);
    }

    System.out.println("getValue End");
  }