有没有办法使用 AssertJ 检查对象是否是某个集合的元素?就像是assertThat(actualObject).isElementOf(collectionWithExpectedOptions);我可以assertThat(collectionWithExpectedOptions).contains(actualObject);但我认为有一个惯例,即争论assertThat()应该是实际的而不是预期的事情。
1 回答
HUWWW
TA贡献1874条经验 获得超12个赞
尝试isIn:
Iterable<Ring> elvesRings = list(vilya, nenya, narya);
// assertion will pass:
assertThat(nenya).isIn(elvesRings);
添加回答
举报
0/150
提交
取消