我有许多测试套和测试,这些测试的执行时间是 。
我设想到适应性测试,以修改试验大学框架(例如,JUnit)来进行这些试验,这些试验在开始时需要的时间较少,最后需要很长时间。
另外,我也想确定一个“annotation,如“@RunFirst”来宣布和通知试验单位框架,以便在一开始进行这一试验,开发商就可以测试在一开始就运行的功能,从而节省很多时间来获得答案。
我的问题是:
- Is there any programmatic way that we order the execution of tests? (I already checked this page but it doesn t look like an appealing solution to me)
- can we access to the statistics of each test ? like how long does each one takes?
- Can we get the result of each test after each test is executed and show it to the user? or we have to wait until all the tests are executed?