本文整理汇总了Java中org.testng.ITestContext.getAllTestMethods方法的典型用法代码示例。如果您正苦于以下问题:Java ITestContext.getAllTestMethods方法的具体用法?Java ITestContext.getAllTestMethods怎么用?Java ITestContext.getAllTestMethods使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.testng.ITestContext
的用法示例。
在下文中一共展示了ITestContext.getAllTestMethods方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getAllMethodsForTest
import org.testng.ITestContext; //导入方法依赖的package包/类
public ITestNGMethod[] getAllMethodsForTest(String testName)
{
ITestContext overview = null;
for (ISuite suite : suites)
{
suiteName = suite.getName();
Map<String, ISuiteResult> tests = suite.getResults();
for (ISuiteResult r : tests.values())
{
overview = r.getTestContext();
if (overview.getName().equalsIgnoreCase(testName))
{
return overview.getAllTestMethods();
}
}
}
return null;
}
示例2: onStart
import org.testng.ITestContext; //导入方法依赖的package包/类
public void onStart(ITestContext context)
{
System.err.println("TEST started : " + context.getName());
testsInProgress.add(context.getName());
ITestNGMethod[] allTestMethods = context.getAllTestMethods();
for (ITestNGMethod m : allTestMethods)
{
String testMethod = m.getTestClass().getName() + "." + m.getMethodName();
testsPending.add(testMethod);
}
update();
}
示例3: getIncludedModulesForTest
import org.testng.ITestContext; //导入方法依赖的package包/类
public List<String> getIncludedModulesForTest(String testName)
{
ITestContext overview = null;
List<String> includedModules = new ArrayList<String>();
String includedModule = "";
String modulesCommaSeparated = config.getProperty("application.modules").replaceAll("\\s+", "");
for (ISuite suite : suites)
{
suiteName = suite.getName();
Map<String, ISuiteResult> tests = suite.getResults();
for (ISuiteResult r : tests.values())
{
overview = r.getTestContext();
if (overview.getName().equalsIgnoreCase(testName))
{
String[] allDefinedModules = null;
if (modulesCommaSeparated == null || modulesCommaSeparated.trim().length() == 0)
{
Assert.fail("ERROR - Modules are not found in properties file");
} else
{
allDefinedModules = new String[modulesCommaSeparated.length()];
allDefinedModules = modulesCommaSeparated.split(",");
}
ITestNGMethod[] allTestMethods = overview.getAllTestMethods();
for (ITestNGMethod testngMethod : allTestMethods)
{
String[] modules = testngMethod.getGroups();
for (String module : modules)
{
for (String moduleName : allDefinedModules)
{
if (module.equalsIgnoreCase(moduleName))
{
if (!(includedModule.contains(module)))
{
includedModules.add(module);
}
}
}
}
}
}
}
}
return includedModules;
}
示例4: getIncludedGroupsForTest
import org.testng.ITestContext; //导入方法依赖的package包/类
public List<String> getIncludedGroupsForTest(String testName)
{
ITestContext overview = null;
List<String> includedGroups = new ArrayList<String>();
String includedGroup = "";
String groupsCommaSeparated = config.getProperty("test.groups").replaceAll("\\s+", "");
for (ISuite suite : suites)
{
suiteName = suite.getName();
Map<String, ISuiteResult> tests = suite.getResults();
for (ISuiteResult r : tests.values())
{
overview = r.getTestContext();
if (overview.getName().equalsIgnoreCase(testName))
{
String[] allDefinedGroups = null;
if (groupsCommaSeparated == null || groupsCommaSeparated.trim().length() == 0)
{
Assert.fail("ERROR - Test Groups are not found in properties file");
} else
{
allDefinedGroups = new String[groupsCommaSeparated.length()];
allDefinedGroups = groupsCommaSeparated.split(",");
}
ITestNGMethod[] allTestMethods = overview.getAllTestMethods();
for (ITestNGMethod testngMethod : allTestMethods)
{
String[] groups = testngMethod.getGroups();
for (String group : groups)
{
for (String groupName : allDefinedGroups)
{
if (group.equalsIgnoreCase(groupName))
{
if (!(includedGroup.contains(group)))
{
includedGroups.add(group);
}
}
}
}
}
}
}
}
return includedGroups;
}
示例5: getMethodResults
import org.testng.ITestContext; //导入方法依赖的package包/类
public Set<ITestResult> getMethodResults(final String testName, final String methodName)
{
ITestContext overview = null;
Set<ITestResult> testResult = null;
for (ISuite suite : suites)
{
Map<String, ISuiteResult> tests = suite.getResults();
for (ISuiteResult r : tests.values())
{
overview = r.getTestContext();
if (testName.equalsIgnoreCase(overview.getName()))
{
ITestNGMethod[] testMethods = overview.getAllTestMethods();
for (ITestNGMethod method : testMethods)
{
if (method.getMethodName().equalsIgnoreCase(methodName))
{
if (!(overview.getPassedTests().getResults(method).isEmpty()))
{
testResult = overview.getPassedTests().getResults(method);
break;
} else if (!(overview.getFailedTests().getResults(method).isEmpty()))
{
testResult = overview.getFailedTests().getResults(method);
break;
} else if (!(overview.getSkippedTests().getResults(method).isEmpty()))
{
testResult = overview.getSkippedTests().getResults(method);
break;
}
}
}
}
}
}
return testResult;
}
示例6: getTestFailureStackTrace
import org.testng.ITestContext; //导入方法依赖的package包/类
public String getTestFailureStackTrace(final String testName, final String methodName)
{
ITestContext overview = null;
Set<ITestResult> testResult = null;
for (ISuite suite : suites)
{
Map<String, ISuiteResult> tests = suite.getResults();
for (ISuiteResult r : tests.values())
{
overview = r.getTestContext();
if (testName.equalsIgnoreCase(overview.getName()))
{
ITestNGMethod[] testMethods = overview.getAllTestMethods();
for (ITestNGMethod method : testMethods)
{
if (method.getMethodName().equalsIgnoreCase(methodName))
{
if (!(overview.getPassedTests().getResults(method).isEmpty()))
{
testResult = overview.getPassedTests().getResults(method);
} else if (!(overview.getFailedTests().getResults(method).isEmpty()))
{
testResult = overview.getFailedTests().getResults(method);
} else if (!(overview.getSkippedTests().getResults(method).isEmpty()))
{
testResult = overview.getSkippedTests().getResults(method);
}
Iterator<ITestResult> it2 = testResult.iterator();
while (it2.hasNext())
{
ITestResult result = it2.next();
return generateExceptionReport(result.getThrowable(), method);
}
}
}
}
}
}
return null;
}