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