|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface FixtureResult
Represents the result of the execution of all the test case methods in a test fixture class.
i.e. zero or many sequentially ordered instances of TestResult
.
TestResult
,
FixtureResults
Method Summary | |
---|---|
TestResult |
get(int index)
Returns the test case method result at the given index. |
ListIterator<TestResult> |
listIterator()
Returns a List iterator to iterate over the test case method results. |
ListIterator<TestResult> |
listIterator(int index)
Returns a List iterator to iterate over the test case method results from the given index. |
int |
size()
Returns the number of test case method results that the fixture result contains. |
TestResult[] |
toArray()
Returns the test case method results as an array. |
Methods inherited from interface java.lang.Iterable |
---|
iterator |
Method Detail |
---|
TestResult get(int index) throws IndexOutOfBoundsException
index
- The index of the test case method result to return.
IndexOutOfBoundsException
- If there isn't a test case method result at the given index.ListIterator<TestResult> listIterator()
ListIterator<TestResult> listIterator(int index) throws IndexOutOfBoundsException
index
- The index from which to obtain a List iterator for.
IndexOutOfBoundsException
- If there isn't a test case method result to start iterating from at the given
index.int size()
TestResult[] toArray()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |