20 lines
449 B
Java
20 lines
449 B
Java
package org.testng;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.Collection;
|
|
import java.util.Set;
|
|
|
|
public interface IResultMap extends Serializable {
|
|
void addResult(ITestResult iTestResult, ITestNGMethod iTestNGMethod);
|
|
|
|
Collection<ITestNGMethod> getAllMethods();
|
|
|
|
Set<ITestResult> getAllResults();
|
|
|
|
Set<ITestResult> getResults(ITestNGMethod iTestNGMethod);
|
|
|
|
void removeResult(ITestNGMethod iTestNGMethod);
|
|
|
|
int size();
|
|
}
|