测试前设置TestNG的输出目录

时间:2015-01-19 15:05:28

标签: java maven testng

我正在使用Eclipse运行一些TestNG测试,使用XML文件(右键单击,作为TestNG套件运行)。我只使用maven作为依赖项,而不是运行测试。有没有办法在代码中设置输出目录?

例如

System.out.println(ctx.getOutputDirectory());

打印当前输出目录,默认情况下是测试输出。但是为什么没有setOutputDirectory呢?我想将@BeforeTest方法中的输出目录设置为我在testng.xml文件中设置的文件夹。

2 个答案:

答案 0 :(得分:11)

您可以使用setOutputDirectory() 只有以编程方式运行testng:

TestListenerAdapter tla = new TestListenerAdapter();
TestNG testng = new TestNG();
testng.setOutputDirectory("your_directory_here")
testng.setTestClasses(new Class[] { Run2.class });
testng.addListener(tla);
testng.run();

http://testng.org/doc/documentation-main.html#running-testng-programmatically

或者您可以将ouputDirectory作为命令行参数-d

传递

http://testng.org/doc/documentation-main.html#running-testng

Eclipse采用默认目录:

public class TestNG {

/** The default name of the result's output directory (keep public, used by     Eclipse). */
public static final String DEFAULT_OUTPUTDIR = "test-output";

答案 1 :(得分:4)

找到答案。

@BeforeTest
public void setup(ITestContext ctx) {
    TestRunner runner = (TestRunner) ctx;
    runner.setOutputDirectory("/Path/To/Store/Output");
}