本文整理汇总了Java中org.testng.ITestResult.getInstance方法的典型用法代码示例。如果您正苦于以下问题:Java ITestResult.getInstance方法的具体用法?Java ITestResult.getInstance怎么用?Java ITestResult.getInstance使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.testng.ITestResult
的用法示例。
在下文中一共展示了ITestResult.getInstance方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: afterInvocation
import org.testng.ITestResult; //导入方法依赖的package包/类
@Override
public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
if (testResult.getInstance() instanceof IInvokedMethodListenerEx) {
((IInvokedMethodListenerEx) testResult.getInstance()).afterInvocation(method, testResult);
}
if (method.getTestMethod().isBeforeMethodConfiguration()) {
// merge with attributes from prior methods
Map<String, Object> attributes = fromBefore.get();
attributes.putAll(PropertyManager.extractAttributes(testResult));
fromBefore.set(attributes);
} else if (method.isTestMethod()) {
fromMethod.set(PropertyManager.extractAttributes(testResult));
} else if (method.getTestMethod().isAfterMethodConfiguration()) {
// nothing to do here
}
}
示例2: beforeInvocation
import org.testng.ITestResult; //导入方法依赖的package包/类
@Override
public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
if (method.getTestMethod().isBeforeMethodConfiguration()) {
// nothing to do here
} else if (method.isTestMethod()) {
PropertyManager.injectAttributes(fromBefore.get(), testResult);
fromBefore.remove();
} else if (method.getTestMethod().isAfterMethodConfiguration()) {
PropertyManager.injectAttributes(fromMethod.get(), testResult);
fromMethod.remove();
}
if (testResult.getInstance() instanceof IInvokedMethodListenerEx) {
((IInvokedMethodListenerEx) testResult.getInstance()).beforeInvocation(method, testResult);
}
}
示例3: afterInvocation
import org.testng.ITestResult; //导入方法依赖的package包/类
/**
* Perform post-invocation processing:
* <ul>
* <li>If indicated, close the driver that was acquired for this method.</li>
* </ul>
*
* @param invokedMethod an object representing the method that's just been invoked
* @param testResult test result object for the method that's just been invoked
*/
@Override
public void afterInvocation(IInvokedMethod invokedMethod, ITestResult testResult) {
// ensure current test result is set
Reporter.setCurrentTestResult(testResult);
Object obj = testResult.getInstance();
Method method = invokedMethod.getTestMethod().getConstructorOrMethod().getMethod();
DriverManager.afterInvocation(obj, method);
}
示例4: beforeInvocation
import org.testng.ITestResult; //导入方法依赖的package包/类
/**
* Perform pre-invocation processing:
* <ul>
* <li>Ensure that a driver instance has been created for the test.</li>
* <li>Store the driver instance for subsequent dispensing.</li>
* <li>Manage configured driver timeout intervals.</li>
* <li>If specified, open the initial page, storing the page object for subsequent dispensing.</li>
* </ul>
*
* @param invokedMethod an object representing the method that's about to be invoked
* @param testResult test result object for the method that's about to be invoked
*/
@Override
public void beforeInvocation(IInvokedMethod invokedMethod, ITestResult testResult) {
// ensure current test result is set
Reporter.setCurrentTestResult(testResult);
Object obj = testResult.getInstance();
Method method = invokedMethod.getTestMethod().getConstructorOrMethod().getMethod();
DriverManager.beforeInvocation(obj, method);
}