Lines Matching refs:method
337 protected boolean isCalled(String method) in isCalled() argument
339 return methCalled.contains(method); in isCalled()
347 protected void requiredMethod(String method) in requiredMethod() argument
349 log.println("starting required method: " + method); in requiredMethod()
350 executeMethod(method); in requiredMethod()
351 Status mtStatus = tRes.getStatusFor(method); in requiredMethod()
355 log.println("! Required method " + method + " failed"); in requiredMethod()
364 protected void executeMethod(String method) in executeMethod() argument
366 if (!isCalled(method)) in executeMethod()
368 log.println("Execute: " + method); in executeMethod()
369 callMethod(method); in executeMethod()
370 log.println(method + ": " + tRes.getStatusFor(method)); in executeMethod()
378 protected void callMethod(String method) in callMethod() argument
380 methCalled.add(method); in callMethod()
381 invokeTestMethod(getMethodFor(method), method); in callMethod() local
445 protected Method getMethodFor(String method) in getMethodFor() argument
447 String mName = "_" + method; in getMethodFor()