有没有办法使用 AssertJ 检查对象是否是某个集合的元素?就像是
assertThat(actualObject).isElementOf(collectionWithExpectedOptions);
我可以
assertThat(collectionWithExpectedOptions).contains(actualObject);
但我认为有一个惯例,即争论assertThat()应该是实际的而不是预期的事情。
assertThat()
HUWWW
相关分类