|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.junit.runner.Result
public class Result
A Result
collects and summarizes information from running multiple tests.
All tests are counted -- additional information is collected from tests that fail.
Constructor Summary | |
---|---|
Result()
|
Method Summary | |
---|---|
RunListener |
createListener()
Internal use only. |
int |
getAssumptionFailureCount()
Returns the number of tests skipped because of an assumption failure |
int |
getFailureCount()
Returns the number of tests that failed during the run |
List<Failure> |
getFailures()
Returns the Failure s describing tests that failed and the problems they encountered |
int |
getIgnoreCount()
|
int |
getRunCount()
Returns the number of tests run |
long |
getRunTime()
Returns the number of milliseconds it took to run the entire suite to run |
boolean |
wasSuccessful()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public Result()
Method Detail |
---|
public int getRunCount()
public int getFailureCount()
public long getRunTime()
public List<Failure> getFailures()
Failure
s describing tests that failed and the problems they encountered
public int getIgnoreCount()
public int getAssumptionFailureCount()
UnsupportedOperationException
- if the result was serialized in a version before JUnit 4.13public boolean wasSuccessful()
true
if all tests succeededpublic RunListener createListener()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |