Lines Matching refs:method
336 protected boolean isCalled(String method) in isCalled() argument
338 return methCalled.contains(method); in isCalled()
346 protected void requiredMethod(String method) in requiredMethod() argument
348 log.println("starting required method: " + method); in requiredMethod()
349 executeMethod(method); in requiredMethod()
350 Status mtStatus = tRes.getStatusFor(method); in requiredMethod()
354 log.println("! Required method " + method + " failed"); in requiredMethod()
363 protected void executeMethod(String method) in executeMethod() argument
365 if (!isCalled(method)) in executeMethod()
367 log.println("Execute: " + method); in executeMethod()
368 callMethod(method); in executeMethod()
369 log.println(method + ": " + tRes.getStatusFor(method)); in executeMethod()
377 protected void callMethod(String method) in callMethod() argument
379 methCalled.add(method); in callMethod()
380 invokeTestMethod(getMethodFor(method), method); in callMethod() local
444 protected Method getMethodFor(String method) in getMethodFor() argument
446 String mName = "_" + method; in getMethodFor()