1 package org.junit.runner.notification; 2 3 import org.junit.runner.Description; 4 import org.junit.runner.Result; 5 6 33 public class RunListener { 34 35 39 public void testRunStarted(Description description) throws Exception { 40 } 41 42 46 public void testRunFinished(Result result) throws Exception { 47 } 48 49 54 public void testStarted(Description description) throws Exception { 55 } 56 57 61 public void testFinished(Description description) throws Exception { 62 } 63 64 68 public void testFailure(Failure failure) throws Exception { 69 } 70 71 76 public void testIgnored(Description description) throws Exception { 77 } 78 79 } 80 81 82 | Popular Tags |