就像标题所说的那样,我正在寻找一种使用Eclipse自动连续多次运行JUnit 4.x测试的简单方法。
一个示例是连续运行相同的测试10次并报告结果。
我们已经有一个复杂的方法来执行此操作,但是我正在寻找一种简单的方法来执行此操作,以便可以确保我一直试图修复的不稳定测试保持不变。
理想的解决方案是我不知道的Eclipse插件/设置/功能。
就像标题所说的那样,我正在寻找一种使用Eclipse自动连续多次运行JUnit 4.x测试的简单方法。
一个示例是连续运行相同的测试10次并报告结果。
我们已经有一个复杂的方法来执行此操作,但是我正在寻找一种简单的方法来执行此操作,以便可以确保我一直试图修复的不稳定测试保持不变。
理想的解决方案是我不知道的Eclipse插件/设置/功能。
Answers:
最简单的方法(至少需要最少的新代码)是将测试作为参数化测试运行(用 @RunWith(Parameterized.class)
并添加一种方法来提供10个空参数)。这样,框架将运行测试10次。
该测试将是类中唯一的测试,或者最好将所有测试方法在类中运行10次。
这是一个例子:
@RunWith(Parameterized.class)
public class RunTenTimes {
@Parameterized.Parameters
public static Object[][] data() {
return new Object[10][0];
}
public RunTenTimes() {
}
@Test
public void runsTenTimes() {
System.out.println("run");
}
}
有了上面的代码,甚至可以使用无参数的构造函数来做到这一点,但是我不确定框架的作者是否打算这样做,或者将来是否会中断。
如果您要实现自己的运行程序,则可以让运行程序运行10次测试。如果您使用的是第三方运行器,那么在4.7中,您可以使用新的@Rule
批注并实现MethodRule
接口,以便它接受该语句并在for循环中执行10次。这种方法的当前缺点是@Before
并@After
获得只运行一次。这可能会在下一个版本的JUnit中@Before
运行(它将在之后运行@Rule
),但是无论您将对对象的同一实例进行操作(对运行器来说都是不正确的Parameterized
)。假设您正在运行类的任何运行程序都正确识别了@Rule
注释。只有将它委托给JUnit运行者时才是这种情况。
如果您正在使用无法识别 @Rule
注释,那么您实际上就不得不编写自己的运行程序以适当地委派给该运行程序并运行10次。
请注意,还有其他方法可以潜在地解决此问题(例如“理论”亚军),但它们都需要亚军。不幸的是,JUnit当前不支持跑步者层。那是一个将其他跑步者拴在一起的跑步者。
我发现Spring的重复注释对这种事情很有用:
@Repeat(value = 10)
最新(Spring Framework 4.3.11.RELEASE API)文档:
受到以下资源的启发:
创建并使用@Repeat
注释,如下所示:
public class MyTestClass {
@Rule
public RepeatRule repeatRule = new RepeatRule();
@Test
@Repeat(10)
public void testMyCode() {
//your test code goes here
}
}
import static java.lang.annotation.ElementType.ANNOTATION_TYPE;
import static java.lang.annotation.ElementType.METHOD;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
@Retention( RetentionPolicy.RUNTIME )
@Target({ METHOD, ANNOTATION_TYPE })
public @interface Repeat {
int value() default 1;
}
import org.junit.rules.TestRule;
import org.junit.runner.Description;
import org.junit.runners.model.Statement;
public class RepeatRule implements TestRule {
private static class RepeatStatement extends Statement {
private final Statement statement;
private final int repeat;
public RepeatStatement(Statement statement, int repeat) {
this.statement = statement;
this.repeat = repeat;
}
@Override
public void evaluate() throws Throwable {
for (int i = 0; i < repeat; i++) {
statement.evaluate();
}
}
}
@Override
public Statement apply(Statement statement, Description description) {
Statement result = statement;
Repeat repeat = description.getAnnotation(Repeat.class);
if (repeat != null) {
int times = repeat.value();
result = new RepeatStatement(statement, times);
}
return result;
}
}
将此解决方案与配合使用@RunWith(PowerMockRunner.class)
,需要更新至Powermock 1.6.5(包括一个补丁)。
使用JUnit 5,我可以使用@RepeatedTest批注解决此问题:
@RepeatedTest(10)
public void testMyCode() {
//your test code goes here
}
请注意,@Test
注释不应与一起使用@RepeatedTest
。
出现任何问题:
@Test
void itWorks() {
// stuff
}
@Test
void itWorksRepeatably() {
for (int i = 0; i < 10; i++) {
itWorks();
}
}
与测试每个值数组的情况不同,您不必特别担心哪个运行失败。
无需在配置或注释中执行您可以在代码中执行的操作。
@Before
在itWorks()
解决我的问题之前,这需要手动调用带注释的方法。
这对我来说更容易。
public class RepeatTests extends TestCase {
public static Test suite() {
TestSuite suite = new TestSuite(RepeatTests.class.getName());
for (int i = 0; i < 10; i++) {
suite.addTestSuite(YourTest.class);
}
return suite;
}
}
public class RepeatRunner extends BlockJUnit4ClassRunner { public RepeatRunner(Class klass) throws InitializationError { super(klass); } @Override public void run(final RunNotifier notifier) { for (int i = 0; i < 10; i++) { super.run(notifier); } } }
尽管至少在Eclipse JUnit插件中,您仍会 获得以下结果:“通过了10/1测试”
tempus-fugit库中有一个Intermittent批注,该批注可与JUnit 4.7 @Rule
一起使用或多次重复测试@RunWith
。
例如,
@RunWith(IntermittentTestRunner.class)
public class IntermittentTestRunnerTest {
private static int testCounter = 0;
@Test
@Intermittent(repition = 99)
public void annotatedTest() {
testCounter++;
}
}
运行测试后(在中使用IntermittentTestRunner @RunWith
),testCounter
将等于99。
我构建了一个允许进行此类测试的模块。但这不仅是重复的重点。但是为了保证某些代码是线程安全的。
https://github.com/anderson-marques/concurrent-testing
Maven的依赖:
<dependency>
<groupId>org.lite</groupId>
<artifactId>concurrent-testing</artifactId>
<version>1.0.0</version>
</dependency>
使用示例:
package org.lite.concurrent.testing;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import ConcurrentTest;
import ConcurrentTestsRule;
/**
* Concurrent tests examples
*/
public class ExampleTest {
/**
* Create a new TestRule that will be applied to all tests
*/
@Rule
public ConcurrentTestsRule ct = ConcurrentTestsRule.silentTests();
/**
* Tests using 10 threads and make 20 requests. This means until 10 simultaneous requests.
*/
@Test
@ConcurrentTest(requests = 20, threads = 10)
public void testConcurrentExecutionSuccess(){
Assert.assertTrue(true);
}
/**
* Tests using 10 threads and make 20 requests. This means until 10 simultaneous requests.
*/
@Test
@ConcurrentTest(requests = 200, threads = 10, timeoutMillis = 100)
public void testConcurrentExecutionSuccessWaitOnly100Millissecond(){
}
@Test(expected = RuntimeException.class)
@ConcurrentTest(requests = 3)
public void testConcurrentExecutionFail(){
throw new RuntimeException("Fail");
}
}
这是一个开源项目。随时改善。
您可以从主要方法运行JUnit测试,并重复多次,需要:
package tests;
import static org.junit.Assert.*;
import org.junit.Test;
import org.junit.runner.Result;
public class RepeatedTest {
@Test
public void test() {
fail("Not yet implemented");
}
public static void main(String args[]) {
boolean runForever = true;
while (runForever) {
Result result = org.junit.runner.JUnitCore.runClasses(RepeatedTest.class);
if (result.getFailureCount() > 0) {
runForever = false;
//Do something with the result object
}
}
}
}