Exemple #1
0
 private static void _testAttributeNameToMethodName(String input, String expected_output) {
   String method_name = Util.attributeNameToMethodName(input);
   System.out.println(
       "attrname="
           + input
           + ", method name="
           + method_name
           + ", expected output="
           + expected_output);
   assert method_name.equals(expected_output)
       : "attrname="
           + input
           + ", method name="
           + method_name
           + ", expected output="
           + expected_output;
 }