blob: d882c61c5ba37ab738802c4887e211f4c0df4160 [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();
}