org.testng.internal.BshMock Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng.internal;
import org.testng.ITestNGMethod;
public class BshMock implements IBsh {
@Override
public boolean includeMethodFromExpression(String expression, ITestNGMethod tm) {
return false;
}
}