作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我沉迷于 AssertJ JUnit 规则 JUnitSoftAssertions
。真的很方便,只需将其添加为测试类字段即可
@Rule
public JUnitSoftAssertions softy = new JUnitSoftAssertions();
然后你在上面链接了几个assertThat
。
现在,我添加了 Guava assertions from AssertJ 的依赖项,但在我看来,没有规则或无法在 JUnit 规则中注册新断言。因此我必须使用丑陋的静态导入。
我错了吗?如果是这样,请解释如何在 JUnit 规则中使用它们(无需我自己实现。
最佳答案
目前assertj-guava中没有软断言支持,但添加它并不太困难,它只需要一个类,例如:
/**
* A single entry point for all soft assertions, AssertJ standard assertions and MyProject custom assertions.
*/
// extending make all standard AssertJ assertions available
public class GuavaJUnitSoftAssertions extends JUnitSoftAssertions {
public <K, V> MultimapAssert<K, V> assertThat(final Multimap<K, V> actual) {
return proxy(MultimapAssert.class, Multimap.class, actual);
}
// add the other guava assertThat methods
// ...
}
很高兴为此做出贡献(我现在有点忙)。
希望对你有帮助
关于java - AssertJ JUnitSoftAssertions 和 Guava 断言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49357627/
我沉迷于 AssertJ JUnit 规则 JUnitSoftAssertions 。真的很方便,只需将其添加为测试类字段即可 @Rule public JUnitSoftAssertions sof
我是一名优秀的程序员,十分优秀!