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 getAllMethods(); Set getAllResults(); Set getResults(ITestNGMethod iTestNGMethod); void removeResult(ITestNGMethod iTestNGMethod); int size(); }