Searched refs:m_outputDir (Results 1 - 3 of 3) sorted by relevance

/external/testng/src/main/java/org/testng/
H A DTestNGAntTask.java115 protected File m_outputDir; field in class:TestNGAntTask
391 m_outputDir= dir;
585 if (null != m_outputDir) {
586 if (!m_outputDir.exists()) {
587 m_outputDir.mkdirs();
589 if (m_outputDir.isDirectory()) {
591 argv.add(m_outputDir.getAbsolutePath());
593 throw new BuildException("Output directory is not a directory: " + m_outputDir);
790 if(m_outputDir != null) {
791 getProject().setProperty("testng.outputdir", m_outputDir
[all...]
H A DSuiteRunner.java51 private String m_outputDir; // DEFAULT_OUTPUT_DIR; field in class:SuiteRunner
221 m_outputDir = (null != outputdir) ? new File(outputdir).getAbsolutePath()
433 return m_outputDir + File.separatorChar + getName();
H A DTestNG.java128 private String m_outputDir = DEFAULT_OUTPUTDIR; field in class:TestNG
234 m_outputDir = outputdir;
1136 reporter.generateReport(m_suites, suiteRunners, m_outputDir);
1321 m_outputDir,
1798 return m_outputDir;

Completed in 117 milliseconds