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