Package org.testng
Interface IResultMap
-
- All Known Implementing Classes:
ResultMap
public interface IResultMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddResult(ITestResult result, ITestNGMethod method)Collection<ITestNGMethod>getAllMethods()Set<ITestResult>getAllResults()Set<ITestResult>getResults(ITestNGMethod method)voidremoveResult(ITestNGMethod m)voidremoveResult(ITestResult r)intsize()
-
-
-
Method Detail
-
addResult
void addResult(ITestResult result, ITestNGMethod method)
-
getResults
Set<ITestResult> getResults(ITestNGMethod method)
-
getAllResults
Set<ITestResult> getAllResults()
-
removeResult
void removeResult(ITestNGMethod m)
-
removeResult
void removeResult(ITestResult r)
-
getAllMethods
Collection<ITestNGMethod> getAllMethods()
-
size
int size()
-
-