Home | History | Annotate | Download | only in rules

Lines Matching refs:method

19  *      public void failed(Throwable e, FrameworkMethod method) {
20 * watchedLog+= method.getName() + " " + e.getClass().getSimpleName()
25 * public void succeeded(FrameworkMethod method) {
26 * watchedLog+= method.getName() + " " + "success!\n";
46 public Statement apply(final Statement base, final FrameworkMethod method,
51 starting(method);
54 succeeded(method);
58 failed(e, method);
61 finished(method);
68 * Invoked when a test method succeeds
70 public void succeeded(FrameworkMethod method) {
74 * Invoked when a test method fails
76 public void failed(Throwable e, FrameworkMethod method) {
80 * Invoked when a test method is about to start
82 public void starting(FrameworkMethod method) {
87 * Invoked when a test method finishes (whether passing or failing)
89 public void finished(FrameworkMethod method) {