org.junit.runner
Class Result
java.lang.Object
org.junit.runner.Result
public class Result
- extends Object
A Result
collects and summarizes information from running multiple
tests. Since tests are expected to run correctly, successful tests are only noted in
the count of tests that ran.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Result
public Result()
getRunCount
public int getRunCount()
- Returns:
- the number of tests run
getFailureCount
public int getFailureCount()
- Returns:
- the number of tests that failed during the run
getRunTime
public long getRunTime()
- Returns:
- the number of milliseconds it took to run the entire suite to run
getFailures
public List<Failure> getFailures()
- Returns:
- the
Failure
s describing tests that failed and the problems they encountered
getIgnoreCount
public int getIgnoreCount()
- Returns:
- the number of tests ignored during the run
wasSuccessful
public boolean wasSuccessful()
- Returns:
true
if all tests succeeded
createListener
public RunListener createListener()
- Internal use only.