Preguntas etiquetadas con hamcrest

114
Hamcrest comparar colecciones

Estoy tratando de comparar 2 listas: assertThat(actual.getList(), is(Matchers.containsInAnyOrder(expectedList))); Pero idea java: no suitable method found for assertThat(java.util.List<Agent>,org.hamcrest.Matcher<java.lang.Iterable<? extends model.Agents>>) method...

88
¿Cómo usar JUnit y Hamcrest juntos?

No puedo entender cómo debería funcionar JUnit 4.8 con los comparadores Hamcrest. Hay algunos matchers definidos dentro junit-4.8.jarde org.hamcrest.CoreMatchers. Al mismo tiempo, hay otros comparadores hamcrest-all-1.1.jaren org.hamcrest.Matchers. Entonces, ¿adónde ir? ¿Debo incluir...