1package org.testng; 2 3 4/** 5 * This interface captures a test method along with all the instances it should 6 * be run on. 7 */ 8public interface IMethodInstance { 9 10 ITestNGMethod getMethod(); 11 12 /** 13 * @deprecated Use getInstance() 14 */ 15 Object[] getInstances(); 16 17 Object getInstance(); 18} 19