gpt4 book ai didi

java - 在 JUnit 测试中,有没有一种方法可以确保所有断言都已执行?

转载 作者:搜寻专家 更新时间:2023-11-01 02:22:45 24 4
gpt4 key购买 nike

我有一个生产者和一个消费者Producer 同步写入消息。消费者是每秒轮询消息的线程。

我有这样的测试:

@Test
public void shouldConsumeMessageWhenMessageIsProduced() {
final Message expectedMessage = new Message("test");
//consumer will poll every 1 second for a message
consumer.poll((actualMessage) -> {assertThat(actualMessage), is(expectedMessage));
producer.sendSynchronously(expectedMessage);
Thread.sleep(3000);
}

这个测试有效。但是,我无法确保确实调用了断言。

我意识到我可以使用 Mockito,但我也意识到这更像是一个集成测试而不是单元测试。但是 JUnit 中有没有确保所有断言都已执行的方法呢?

请注意,由于断言是在 lambda 中,我无法增加变量或设置标志。

最佳答案

我会根据您的喜好从您的 lambda 表达式中使用 AtomicBooleanMutableBoolean。有关示例,请参见以下代码:

import static org.junit.Assert.assertTrue;
import java.util.concurrent.atomic.AtomicBoolean;
import org.apache.commons.lang.mutable.MutableBoolean;
import org.junit.Test;

public class AssertionLambdaTest {
@Test
public void assertExecutedWithAtomicBoolean() {
AtomicBoolean myBoolean = new AtomicBoolean(false);
doStuff(() -> {
assertTrue(true);
myBoolean.set(true);
});
assertTrue(myBoolean.get());
}

@Test
public void assertExecutedWithMutableBoolean() {
MutableBoolean myBoolean = new MutableBoolean(false);
doStuff(() -> {
assertTrue(true);
myBoolean.setValue(true);
});
assertTrue(myBoolean.booleanValue());
}

private void doStuff(Runnable runner) {
runner.run();
}
}

编辑:我刚刚意识到你的问题说的是“所有断言”。因此,您可以等效地使用 Apache's MutableInt classJava's AtomicInteger以同样的方式,递增直到达到正确的数字。

关于java - 在 JUnit 测试中,有没有一种方法可以确保所有断言都已执行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35046047/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com