Home
last modified time | relevance | path

Searched refs:IHookable (Results 1 – 15 of 15) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DInvokeMethodRunnable.java3 import org.testng.IHookable;
18 private final IHookable m_hookable;
24 IHookable hookable, in InvokeMethodRunnable()
DConfiguration.java15 IHookable m_hookable;
54 public IHookable getHookable() { in getHookable()
59 public void setHookable(IHookable h) { in setHookable()
DIConfiguration.java15 IHookable getHookable(); in getHookable()
16 void setHookable(IHookable h); in setHookable()
DMethodInvocationHelper.java6 import org.testng.IHookable;
189 final IHookable hookable, final Method thisMethod, in invokeHookable()
227 Object[] parameterValues, ITestResult testResult, IHookable hookable) in invokeWithTimeout()
239 Object[] parameterValues, ITestResult testResult, IHookable hookable) { in invokeWithTimeoutWithNoExecutor()
252 Object[] parameterValues, ITestResult testResult, IHookable hookable) in invokeWithTimeoutWithNewExecutor()
DInvoker.java18 import org.testng.IHookable;
633 IHookable hookableInstance = in invokeMethod()
634 IHookable.class.isAssignableFrom(tm.getRealClass()) ? in invokeMethod()
635 (IHookable) instance : m_configuration.getHookable(); in invokeMethod()
/external/testng/src/test/java/test/hook/
DHookListener.java4 import org.testng.IHookable;
7 public class HookListener implements IHookable {
DHookFailureTest.java4 import org.testng.IHookable;
8 public class HookFailureTest implements IHookable {
DHookSuccess599Test.java4 import org.testng.IHookable;
16 public class HookSuccess599Test implements IHookable {
DHookSuccessTest.java4 import org.testng.IHookable;
16 public class HookSuccessTest implements IHookable {
DHookSuccess862Test.java11 public class HookSuccess862Test implements IHookable {
/external/testng/src/main/java/org/testng/
DIHookable.java28 public interface IHookable extends ITestNGListener { interface
DTestNG.java182 private IHookable m_hookable;
731 if (listener instanceof IHookable) { in addListener()
732 setHookable((IHookable) listener); in addListener()
1982 private void setHookable(IHookable h) { in setHookable()
DTestRunner.java364 if (listener instanceof IHookable) { in initListeners()
365 m_configuration.setHookable((IHookable) listener); in initListeners()
/external/testng/
DTODO.txt46 * IHookable
DCHANGES.txt53 Fixed: GITHUB-599: IHookable ignored when a timeout is set (@ryanlevell & Julien Herr)
983 Added: Support for JAAS (see org.testng.IHookable)