org.schmant.task.junit4.suitereporter
Class SimpleJUnit4TestSuiteReportPrinter

java.lang.Object
  extended by org.schmant.task.junit4.suitereporter.SimpleJUnit4TestSuiteReportPrinter
All Implemented Interfaces:
JUnit4TestSuiteReportPrinter

public class SimpleJUnit4TestSuiteReportPrinter
extends Object
implements JUnit4TestSuiteReportPrinter

This is the default JUnit4TestSuiteReportPrinter. It prints a report containing information on successful and failed test suites and on all failed test runs.

Since:
0.6
Author:
Karl Gustafsson
Task_package:
org.junit.junit4

Constructor Summary
SimpleJUnit4TestSuiteReportPrinter()
           
 
Method Summary
 void printReport(Collection<TestRun> c, Report r)
          Print the test suite run report to the supplied Report object.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SimpleJUnit4TestSuiteReportPrinter

public SimpleJUnit4TestSuiteReportPrinter()
Method Detail

printReport

public void printReport(Collection<TestRun> c,
                        Report r)
Description copied from interface: JUnit4TestSuiteReportPrinter
Print the test suite run report to the supplied Report object.

Specified by:
printReport in interface JUnit4TestSuiteReportPrinter
Parameters:
c - A collection of test run results.
r - The Report to print the test suite run report to.