
org.testtoolinterfaces.testresult.TestEntryIterationResult Maven / Gradle / Ivy
/**
*
*/
package org.testtoolinterfaces.testresult;
import java.util.Hashtable;
import java.util.Iterator;
import java.util.List;
/**
* @author Arjan Kranenburg
*
*/
public interface TestEntryIterationResult
{
/**
* @return the itemName
*/
public String getItemName();
/**
* @return the list name
*/
public String getListName();
public Iterator> getIterator();
public int getSize();
/**
* Adds an resultSequence to the end of the resultSequences list.
*
* @param aTestResultSequence
*/
public void addExecResult(List aTestResultSequence);
public Hashtable> getTestResultSequenceTable();
/**
* Adds a Value to the end of the iteration values list.
*
* @param aValue
*/
public void addIterationValue(Object aValue);
public Hashtable getIterationValues();
/**
* @param anUntilResult
*/
public void addUntilResult(TestStepResult anUntilResult);
public Hashtable getUntilResults();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy