org.junit.experimental.results
Class PrintableResult

java.lang.Object
  extended by org.junit.experimental.results.PrintableResult

public class PrintableResult
extends Object

A test result that prints nicely in error messages. This is only intended to be used in JUnit self-tests. For example:

    assertThat(testResult(HasExpectedException.class), isSuccessful());
 


Constructor Summary
PrintableResult(List<Failure> failures)
          A result that includes the given failures
 
Method Summary
 int failureCount()
          Returns the number of failures in this result.
static PrintableResult testResult(Class<?> type)
          The result of running JUnit on type
 String toString()
           
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

PrintableResult

public PrintableResult(List<Failure> failures)
A result that includes the given failures

Method Detail

testResult

public static PrintableResult testResult(Class<?> type)
The result of running JUnit on type


toString

public String toString()
Overrides:
toString in class Object

failureCount

public int failureCount()
Returns the number of failures in this result.