10 lines
146 B
Java
10 lines
146 B
Java
package org.testng;
|
|
|
|
public interface IMethodInstance {
|
|
Object getInstance();
|
|
|
|
Object[] getInstances();
|
|
|
|
ITestNGMethod getMethod();
|
|
}
|