Checks if the method was called, and if not, call it. On contrary to requiredMethod(), he method doesn't check its status.
(String method)
| 345 | * On contrary to requiredMethod(), he method doesn't check its status. |
| 346 | */ |
| 347 | protected void executeMethod(String method) |
| 348 | { |
| 349 | if (!isCalled(method)) |
| 350 | { |
| 351 | log.println("Execute: " + method); |
| 352 | callMethod(method); |
| 353 | log.println(method + ": " + tRes.getStatusFor(method)); |
| 354 | log.println(); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * Just calls the <code>method</code> test. |
no test coverage detected