Home | History | Annotate | Download | only in textui

Lines Matching defs:result

28 	synchronized void print(TestResult result, long runTime) {
30 printErrors(result);
31 printFailures(result);
32 printFooter(result);
48 protected void printErrors(TestResult result) {
49 printDefects(result.errors(), result.errorCount(), "error");
52 protected void printFailures(TestResult result) {
53 printDefects(result.failures(), result.failureCount(), "failure");
82 protected void printFooter(TestResult result) {
83 if (result.wasSuccessful()) {
86 getWriter().println (" (" + result.runCount() + " test" + (result.runCount() == 1 ? "": "s") + ")");
91 getWriter().println("Tests run: "+result.runCount()+
92 ", Failures: "+result.failureCount()+
93 ", Errors: "+result.errorCount());