当前位置: 首页>>代码示例>>Java>>正文


Java ITestResult.setAttribute方法代码示例

本文整理汇总了Java中org.testng.ITestResult.setAttribute方法的典型用法代码示例。如果您正苦于以下问题:Java ITestResult.setAttribute方法的具体用法?Java ITestResult.setAttribute怎么用?Java ITestResult.setAttribute使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.testng.ITestResult的用法示例。


在下文中一共展示了ITestResult.setAttribute方法的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: set

import org.testng.ITestResult; //导入方法依赖的package包/类
/**
 * Store the specified object in the attributes collection.
 * 
 * @param obj object to be stored; 'null' to discard value
 * @return (optional) specified object
 */
private <T> Optional<T> set(T obj) {
    ITestResult result = Reporter.getCurrentTestResult();
    Optional<T> val = TestBase.optionalOf(obj);
    result.setAttribute(key, val);
    return val;
}
 
开发者ID:Nordstrom,项目名称:Selenium-Foundation,代码行数:13,代码来源:TestNgBase.java

示例2: testAttributeExtraction

import org.testng.ITestResult; //导入方法依赖的package包/类
@Test
public void testAttributeExtraction() {
    
    ITestResult testResult = Reporter.getCurrentTestResult();
    
    testResult.setAttribute(BOOLEAN_KEY, BOOLEAN_VAL);
    testResult.setAttribute(STRING_KEY, STRING_VAL);
    testResult.setAttribute(OBJECT_KEY, OBJECT_VAL);
    Map<String, Object> extractedMap = PropertyManager.extractAttributes(testResult);
    
    assertEquals(extractedMap, attributeMap, "Extracted map differs from expected map");
    
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:14,代码来源:PropertyManagerTest.java

示例3: retryMethod

import org.testng.ITestResult; //导入方法依赖的package包/类
@Override
public boolean retryMethod(ITestResult result) {
    boolean willRetry = !result.isSuccess();
    if (willRetry) {
        result.setAttribute("retry", true);
    }
    return willRetry;
}
 
开发者ID:allure-framework,项目名称:allure-java,代码行数:9,代码来源:RetryTest.java

示例4: recordArtifactPath

import org.testng.ITestResult; //导入方法依赖的package包/类
/**
 * Record the path at which the specified artifact was store in the indicated test result.
 * @param artifactPath path at which the captured artifact was stored 
 * @param result TestNG test result object
 */
private static void recordArtifactPath(Path artifactPath, ITestResult result) {
    @SuppressWarnings("unchecked")
    List<Path> artifactPaths = (List<Path>) result.getAttribute(ARTIFACT_PATHS);
    if (artifactPaths == null) {
        artifactPaths = new ArrayList<>();
        result.setAttribute(ARTIFACT_PATHS, artifactPaths);
    }
    artifactPaths.add(artifactPath);
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:15,代码来源:ArtifactCollector.java

示例5: getConfig

import org.testng.ITestResult; //导入方法依赖的package包/类
/**
 * Get the TestNG configuration object for the specified context.
 * 
 * @param testResult configuration context (TestNG test result object)
 * @return TestNG configuration object
 */
public static TestNGConfig getConfig(ITestResult testResult) {
    if (testResult == null) {
        return testNGConfig.get();
    }
    
    TestNGConfig config = (TestNGConfig) testResult.getAttribute(TESTNG_CONFIG);
    
    if (config == null) {
        config = testNGConfig.get();
        testResult.setAttribute(TESTNG_CONFIG, config);
    }
    
    return config;
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:21,代码来源:TestNGConfig.java

示例6: injectAttributes

import org.testng.ITestResult; //导入方法依赖的package包/类
/**
 * Inject the entries of the specified {@link Map} into the attribute collection of the specified test result.
 * 
 * @param attributes map of test result attributes
 * @param testResult test result object
 */
public static void injectAttributes(Map<String, Object> attributes, ITestResult testResult) {
    if (attributes != null) {
        for (Entry<String, Object> thisEntry : attributes.entrySet()) {
            testResult.setAttribute(thisEntry.getKey(), thisEntry.getValue());
        }
    }
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:14,代码来源:PropertyManager.java

示例7: setLog

import org.testng.ITestResult; //导入方法依赖的package包/类
private void setLog(ITestResult tr) {
	StringWriter exception = new StringWriter();
	if (tr.getThrowable() != null) {
		tr.getThrowable().printStackTrace(new PrintWriter(exception));
	}
	tr.setAttribute("log", MTLogBuffer.getStringLog() + exception);
}
 
开发者ID:21ca,项目名称:selenium-testng-template,代码行数:8,代码来源:HtmlReporter.java

示例8: takeScreenshot

import org.testng.ITestResult; //导入方法依赖的package包/类
private void takeScreenshot(ITestResult tr) {
	if (Config.driver() != null) {
		String file = SeleniumUtils.takeScreenShot();
		String imageFile = SeleniumUtils.SCREENSHOT_PATH + file;
		String thumbFile = SeleniumUtils.SCREENSHOT_PATH + "thumb_" + file;
		buildThumbImage(imageFile, thumbFile);
		tr.setAttribute("screenshot", imageFile);
		tr.setAttribute("thumbScreenshot", thumbFile);
	}
}
 
开发者ID:21ca,项目名称:selenium-testng-template,代码行数:11,代码来源:HtmlReporter.java

示例9: baseCleanup

import org.testng.ITestResult; //导入方法依赖的package包/类
@AfterMethod(alwaysRun = true)
public void baseCleanup(ITestContext context, ITestResult result, Object[] params) throws IOException {
	if (params.length > 0 && params[0] instanceof WebDriverInstance){
		WebDriverInstance webDriverInstance = (WebDriverInstance)params[0];
		webDriverInstance.cleanup();
	}
	logTestResult(result);
	String tag = ThreadContext.get(THREAD_TAG);
	logger.info("Test is finished, removing the tag [{}]...", tag);
	ThreadContext.remove(THREAD_TAG);
	result.setAttribute(THREAD_TAG, tag);
}
 
开发者ID:3pillarlabs,项目名称:AutomationFrameworkTPG,代码行数:13,代码来源:TestBase.java

示例10: disableCapture

import org.testng.ITestResult; //导入方法依赖的package包/类
static void disableCapture(ITestResult result) {
    result.setAttribute(CAPTURE_DISABLED, Boolean.TRUE);
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:4,代码来源:UnitTestArtifact.java

示例11: crippleCapture

import org.testng.ITestResult; //导入方法依赖的package包/类
static void crippleCapture(ITestResult result) {
    result.setAttribute(CAPTURE_CRIPPLED, Boolean.TRUE);
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:4,代码来源:UnitTestArtifact.java

示例12: setCaptureState

import org.testng.ITestResult; //导入方法依赖的package包/类
static void setCaptureState(ITestResult result, CaptureState state) {
    result.setAttribute(CAPTURE_STATE, state);
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:4,代码来源:UnitTestArtifact.java

示例13: captureArtifact

import org.testng.ITestResult; //导入方法依赖的package包/类
/**
 * Capture artifact from the current test result context.
 * <br><br>
 * <b>NOTE</b>: This override is here solely to record the artifact path for the benefit of the unit tests,
 * as verification meta-data. It makes no contribution to the actual process of artifact capture
 * 
 * @param testResult TestNG test result object
 * @return path at which the captured artifact was stored
 */
@Override
public Optional<Path> captureArtifact(ITestResult testResult) {
    Optional<Path> artifactPath = super.captureArtifact(testResult);
    testResult.setAttribute(ARTIFACT_PATH, artifactPath);
    return artifactPath;
}
 
开发者ID:Nordstrom,项目名称:TestNG-Foundation,代码行数:16,代码来源:UnitTestCapture.java


注:本文中的org.testng.ITestResult.setAttribute方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。