blob: 1180fb917110d561099afee94b60a207f34c052a [file] [log] [blame]
package org.testng;
/**
* This interface captures a test method along with all the instances it should
* be run on.
*/
public interface IMethodInstance {
ITestNGMethod getMethod();
Object[] getInstances();
}