基准JUnit AllTests

时间:2013-03-22 14:26:48

标签: java junit

有没有办法在JUnit测试套件中放置简单的启动/停止计时?

当我创建一个测试套件类时,它看起来像这样,我可以运行它。但是我怎么能在这里放一个简单的长启动时间变量来显示所有测试运行多长时间?

public class AllTests {

    public static Test suite() throws Exception {
        TestSuite theTestSuite = new TestSuite();
        theTestSuite.addTest(com.company.AllBlahTests.suite());
        theTestSuite.addTest(com.company.AllOtherTests.suite());
        return theTestSuite;
    }
}

1 个答案:

答案 0 :(得分:3)

查看上一个问题的答案。 Before and After Suite execution hook in jUnit 4.x

如果您实施该解决方案,您可以将您的计时代码放在套件类的设置和拆解方法中。