1package org.testng.internal;
2
3import org.testng.ITestNGMethod;
4
5public interface IBsh {
6  boolean includeMethodFromExpression(String expression, ITestNGMethod tm);
7}
8