public void testMatchMethodName3() {
MethodPattern methodPattern = Pattern.compileMethodPattern("* *()");
assertTrue(methodPattern.matchMethodName("method"));
assertTrue(methodPattern.matchMethodName("methods"));
assertTrue(methodPattern.matchMethodName("alsdkfj"));
assertFalse(methodPattern.matchMethodName(""));
}
public void testMatchMethodName4() {
MethodPattern methodPattern = Pattern.compileMethodPattern("* *th*()");
assertTrue(methodPattern.matchMethodName("method"));