blob: de3727e35aec74cf449fdc7a8fe747d3946666e1 [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();
/**
* @deprecated Use getInstance()
*/
Object[] getInstances();
Object getInstance();
}