當前位置: 首頁>>代碼示例>>Java>>正文


Java ITestResult.getName方法代碼示例

本文整理匯總了Java中org.testng.ITestResult.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java ITestResult.getName方法的具體用法?Java ITestResult.getName怎麽用?Java ITestResult.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.testng.ITestResult的用法示例。


在下文中一共展示了ITestResult.getName方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: retry

import org.testng.ITestResult; //導入方法依賴的package包/類
@Override
public boolean retry(ITestResult result) {
	if (retryCount <= maxRetryCount) {
		String message = "Retry for [" + result.getName() + "] on class [" + result.getTestClass().getName() + "] Retry "
				+ retryCount + " times";
		logger.info(message);
		Reporter.setCurrentTestResult(result);
		Reporter.log("RunCount=" + (retryCount + 1));
		retryCount++;
		return true;
	}
	return false;
}
 
開發者ID:quanqinle,項目名稱:WebAndAppUITesting,代碼行數:14,代碼來源:TestngRetry.java

示例2: getTestName

import org.testng.ITestResult; //導入方法依賴的package包/類
private String getTestName(
                            ITestResult result ) {

    String testName = result.getName();

    // check if there is a description annotation and get the test name
    Method testCaseMethod = result.getMethod().getConstructorOrMethod().getMethod();
    Description testCaseDescription = testCaseMethod.getAnnotation(Description.class);
    if (testCaseDescription != null && testCaseDescription.name().length() > 0) {
        testName = testCaseDescription.name();
    }

    return testName;
}
 
開發者ID:Axway,項目名稱:ats-framework,代碼行數:15,代碼來源:RetryAnalyzer.java

示例3: getTestName

import org.testng.ITestResult; //導入方法依賴的package包/類
private String getTestName( ITestResult result ) {

        String testName = result.getName();

        // check if there is a description annotation and get the test name
        Method testCaseMethod = result.getMethod().getConstructorOrMethod().getMethod();
        Description testCaseDescription = testCaseMethod.getAnnotation(Description.class);
        if (testCaseDescription != null && testCaseDescription.name().length() > 0) {
            testName = testCaseDescription.name();
        }

        return testName;
    }
 
開發者ID:Axway,項目名稱:ats-framework,代碼行數:14,代碼來源:AtsTestngTestListener.java

示例4: getArtifactBaseName

import org.testng.ITestResult; //導入方法依賴的package包/類
/**
 * Get base name for artifact files for the specified test result.
 * <br><br>
 * <b>NOTE</b>: The base name is derived from the name of the current test.
 * If the method is parameterized, a hash code is computed from the parameter
 * values and appended to the base name as an 8-digit hexadecimal integer.
 * 
 * @param result TestNG test result object
 * @return artifact file base name
 */
private static String getArtifactBaseName(ITestResult result) {
    Object[] parameters = result.getParameters();
    if (parameters.length == 0) {
        return result.getName();
    } else {
        int hashcode = Arrays.deepHashCode(parameters);
        String hashStr = String.format("%08X", hashcode);
        return result.getName() + "-" + hashStr;
    }
}
 
開發者ID:Nordstrom,項目名稱:TestNG-Foundation,代碼行數:21,代碼來源:ArtifactCollector.java


注:本文中的org.testng.ITestResult.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。