Add a "call method" rule for a method which accepts no arguments. @param pattern Element matching pattern @param methodName Method name to be called @see CallMethodRule
(String pattern, String methodName)
| 1712 | * @see CallMethodRule |
| 1713 | */ |
| 1714 | public void addCallMethod(String pattern, String methodName) { |
| 1715 | |
| 1716 | addRule(pattern, new CallMethodRule(methodName)); |
| 1717 | |
| 1718 | } |
| 1719 | |
| 1720 | /** |
| 1721 | * Add a "call method" rule for the specified parameters. |
no test coverage detected