如另一个答案中所述,如果您不关心顺序,则可能最好更改界面,使其不关心顺序。
如果顺序在代码中很重要,但在特定测试中不重要,则可以像平常一样使用
ArgumentCaptor。它会使代码有些混乱。
如果这是您可以在多个测试中执行的 *** 作,则最好使用适当的Mockito
Matchers或Hamcrest
Matchers,或者自己动手制作(如果找不到满足您需求的产品)。hamcrest匹配器可能是最好的,因为除了mockito之外,它还可以在其他环境中使用。
对于此示例,您可以创建一个hamcrest匹配器,如下所示:
import org.hamcrest.baseMatcher;import org.hamcrest.Description;import org.hamcrest.Matcher;import java.util.Collections;import java.util.HashSet;import java.util.List;import java.util.Set;public class MyMatchers { public static <T> Matcher<List<T>> sameAsSet(final List<T> expectedList) { return new baseMatcher<List<T>>(){ @Override public boolean matches(Object o) { List<T> actualList = Collections.EMPTY_LIST; try { actualList = (List<T>) o; } catch (ClassCastException e) { return false; } Set<T> expectedSet = new HashSet<T>(expectedList); Set<T> actualSet = new HashSet<T>(actualList); return actualSet.equals(expectedSet); } @Override public void describeTo(Description description) { description.appendText("should contain all and only elements of ").appendValue(expectedList); } }; }}
然后,验证代码变为:
verify(mockClassB).sendEvent(argThat(MyMatchers.sameAsSet(expectedFileList)));
如果您改为创建一个模仿匹配器,则不需要
argThat,它基本上将hamcrest匹配器包装在模仿匹配器中。
这将排序或转换的逻辑移到测试之外,并使其可重用。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)