1package org.testng.internal;
2
3import org.testng.ITestNGMethod;
4
5public class BshMock implements IBsh {
6
7  @Override
8  public boolean includeMethodFromExpression(String expression, ITestNGMethod tm) {
9    return false;
10  }
11
12}
13