public void testMatchFieldName6() {
FieldPattern fieldPattern = Pattern.compileFieldPattern("int MyMethod");
assertFalse(fieldPattern.matchFieldName(""));
assertTrue(fieldPattern.matchFieldName("MyMethod"));
assertFalse(fieldPattern.matchFieldName("mymethod"));
}
public void testMatchFieldType1() {
FieldPattern fieldPattern = Pattern.compileFieldPattern("int m_field");