本文整理汇总了Java中org.testng.TestNG.setOutputDirectory方法的典型用法代码示例。如果您正苦于以下问题:Java TestNG.setOutputDirectory方法的具体用法?Java TestNG.setOutputDirectory怎么用?Java TestNG.setOutputDirectory使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.testng.TestNG
的用法示例。
在下文中一共展示了TestNG.setOutputDirectory方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: run
import org.testng.TestNG; //导入方法依赖的package包/类
private void run()
{
LOG.debug("running tempto with options: {}", options);
if (options.isHelpRequested()) {
parser.printHelpMessage();
return;
}
XmlSuite testSuite = getXmlSuite();
testSuite.setThreadCount(options.getThreadCount());
setupTestsConfiguration();
System.setProperty(CONVENTION_TESTS_DIR_KEY, options.getConventionTestsDirectory());
TestNG testNG = new TestNG();
testNG.setXmlSuites(singletonList(testSuite));
testNG.setOutputDirectory(options.getReportDir());
setupTestsFiltering(testNG);
options.getConventionResultsDumpPath()
.ifPresent(path -> System.setProperty(CONVENTION_TESTS_RESULTS_DUMP_PATH_KEY, path));
testNG.run();
if (testNG.hasFailure()) {
System.exit(1);
}
}
示例2: runTests
import org.testng.TestNG; //导入方法依赖的package包/类
private void runTests() {
TestNG testNg = new TestNG();
testNg.setOutputDirectory(testReportDir.getAbsolutePath());
testNg.setDefaultSuiteName(options.getDefaultSuiteName());
testNg.setDefaultTestName(options.getDefaultTestName());
testNg.setParallel(options.getParallel());
testNg.setThreadCount(options.getThreadCount());
invokeVerifiedMethod(testNg, "setConfigFailurePolicy", String.class, options.getConfigFailurePolicy(), TestNGOptions.DEFAULT_CONFIG_FAILURE_POLICY);
invokeVerifiedMethod(testNg, "setPreserveOrder", boolean.class, options.getPreserveOrder(), false);
invokeVerifiedMethod(testNg, "setGroupByInstances", boolean.class, options.getGroupByInstances(), false);
testNg.setUseDefaultListeners(options.getUseDefaultListeners());
testNg.setVerbose(0);
testNg.setGroups(CollectionUtils.join(",", options.getIncludeGroups()));
testNg.setExcludedGroups(CollectionUtils.join(",", options.getExcludeGroups()));
//adding custom test listeners before Gradle's listeners.
//this way, custom listeners are more powerful and, for example, they can change test status.
for (String listenerClass : options.getListeners()) {
try {
testNg.addListener(applicationClassLoader.loadClass(listenerClass).newInstance());
} catch (Throwable e) {
throw new GradleException(String.format("Could not add a test listener with class '%s'.", listenerClass), e);
}
}
if (!options.getIncludedTests().isEmpty()) {
testNg.addListener(new SelectedTestsFilter(options.getIncludedTests()));
}
if (!suiteFiles.isEmpty()) {
testNg.setTestSuites(GFileUtils.toPaths(suiteFiles));
} else {
testNg.setTestClasses(testClasses.toArray(new Class[0]));
}
testNg.addListener((Object) adaptListener(new TestNGTestResultProcessorAdapter(resultProcessor, idGenerator, timeProvider)));
testNg.run();
}
示例3: autoRunXml
import org.testng.TestNG; //导入方法依赖的package包/类
/**
* This method runs the XML suite file dynamically
**/
public static void autoRunXml() {
List<String> files = new ArrayList<String>();
if (Driver.getRunOn().equalsIgnoreCase("standalone")) {
if (Driver.getType().equalsIgnoreCase("desktop")) {
files.add("./src/test/resources/suites/desktop.xml");
} else if (Driver.getType().equalsIgnoreCase("device")) {
files.add("./src/test/resources/suites/device.xml");
} else if (Driver.getType().equalsIgnoreCase("app")) {
files.add("./src/test/resources/suites/app.xml");
}
} else if (Driver.getRunOn().equalsIgnoreCase("grid")) {
if (Driver.getType().equalsIgnoreCase("desktop")) {
files.add("./src/test/resources/suites/desktop-grid.xml");
} else if (Driver.getType().equalsIgnoreCase("device")) {
files.add("./src/test/resources/suites/device-grid.xml");
} else if (Driver.getType().equalsIgnoreCase("app")) {
files.add("./src/test/resources/suites/app.xml");
}
}
TestNG tng = new TestNG();
TestNG tng1 = new TestNG();
tng.setOutputDirectory(ReportNGReport.makDir());
tng1.setOutputDirectory(ExtentReport.makDir());
tng.setUseDefaultListeners(false);
tng.setTestSuites(files);
tng.run();
}
示例4: runTest
import org.testng.TestNG; //导入方法依赖的package包/类
protected void runTest( String outputFolder, Class theTest, SuiteContainer sC )
{
int threadCount = Integer.parseInt( System.getProperty( "xF-ThreadCount", "10" ) );
int verboseLevel = Integer.parseInt( System.getProperty( "xF-VerboseLevel", "10" ) );
TestNG testNg = new TestNG( true );
testNg.setVerbose( verboseLevel );
testNg.setThreadCount( threadCount );
testNg.setDataProviderThreadCount( threadCount );
testNg.setOutputDirectory( outputFolder + System.getProperty( "file.separator" ) + "testNg" );
testNg.setTestClasses( new Class[] { theTest } );
testNg.run();
}
示例5: main
import org.testng.TestNG; //导入方法依赖的package包/类
/**
* @param args
*/
public static void main(String[] args) {
BasicConfigurator.configure();
Logger.getRootLogger().setLevel(Level.INFO);
TestNG testng = new TestNG();
List<String> suites = new ArrayList<String>();
suites.add("src/test/resources/testng.xml");
testng.setTestSuites(suites);
testng.setOutputDirectory("target/test-output");
testng.run();
}
示例6: execute
import org.testng.TestNG; //导入方法依赖的package包/类
public void execute(Test test, UUID batchId,Boolean persist) {
DbHelper db = new DbHelper();
try {
String outputDir = testReport + "/" + batchId + "/" + "TestNG" + "/"+test.getName();
System.setProperty("testReport", outputDir);
TestListener tla = new TestListener();
TestReporter reporter = new TestReporter();
ArrayList<String> suiteFiles = new ArrayList<String>();
suiteFiles.add(test.getPath());
XmlSuite xmlSuite = new XmlSuite();
xmlSuite.setSuiteFiles(suiteFiles);
List suites = Lists.newArrayList();
suites.add(test.getPath());
TestNG testNG = new TestNG();
testNG.addListener(tla);
testNG.addListener(reporter);
testNG.setTestSuites(suites);
testNG.setOutputDirectory(outputDir);
testNG.run();
test.setPassed(tla.getPassedTests().size());
test.setFailed(tla.getFailedTests().size());
test.setException(tla.getSkippedTests().size());
db.addResults(test, batchId, persist);
} catch (Exception e) {
e.printStackTrace();
}
}
示例7: execute
import org.testng.TestNG; //导入方法依赖的package包/类
/**
* Executes a test suite using the supplied test run arguments. The test run
* arguments are expected to be contained in an XML properties document
* structured as shown in the following example.
*
* <pre>
* {@code
* <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
* <properties version="1.0">
* <comment>Test run arguments</comment>
* <entry key="arg1">atom-feed.xml</entry>
* <entry key="arg2">L2</entry>
* </properties>
* }
* </pre>
*
* <p>
* <strong>Note:</strong>The actual arguments (key-value pairs) are
* suite-specific.
* </p>
*
* @param testRunArgs
* A DOM Document node that contains a set of XML properties.
* @return A Source object that provides an XML representation of the test
* results.
*/
@Override
public Source execute(Document testRunArgs) {
if (null == testRunArgs) {
throw new IllegalArgumentException("No test run arguments were supplied.");
}
TestNG driver = new TestNG();
setTestSuites(driver, this.testngConfig);
driver.setVerbose(0);
driver.setUseDefaultListeners(this.useDefaultListeners);
UUID runId = UUID.randomUUID();
File runDir = new File(this.outputDir, runId.toString());
if (!runDir.mkdir()) {
runDir = this.outputDir;
LOGR.config("Created test run directory at " + runDir.getAbsolutePath());
}
driver.setOutputDirectory(runDir.getAbsolutePath());
AlterSuiteParametersListener listener = new AlterSuiteParametersListener();
listener.setTestRunArgs(testRunArgs);
listener.setTestRunId(runId);
driver.addAlterSuiteListener(listener);
driver.run();
Source source = null;
try {
File resultsFile = getResultsFile(getPreferredMediaType(testRunArgs), driver.getOutputDirectory());
InputStream inStream = new FileInputStream(resultsFile);
InputSource inSource = new InputSource(new InputStreamReader(inStream, StandardCharsets.UTF_8));
source = new SAXSource(inSource);
source.setSystemId(resultsFile.toURI().toString());
} catch (IOException e) {
LOGR.log(Level.SEVERE, "Error reading test results: " + e.getMessage());
}
return source;
}