org.testng.IResultMap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testng Show documentation
Show all versions of testng Show documentation
Testing framework for Java
package org.testng;
import java.io.Serializable;
import java.util.Collection;
import java.util.Set;
public interface IResultMap extends Serializable {
public void addResult(ITestResult result, ITestNGMethod method);
public Set getResults(ITestNGMethod method);
public Set getAllResults();
public void removeResult(ITestNGMethod m);
public Collection getAllMethods();
public int size();
}