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