emptyiterable ex

This commit is contained in:
Loredana Crusoveanu 2018-05-08 21:16:49 +03:00
parent 1e1142b145
commit b2e489ca64
1 changed files with 2 additions and 0 deletions

View File

@ -12,6 +12,7 @@ import static org.hamcrest.Matchers.hasItems;
import static org.hamcrest.Matchers.hasSize;
import static org.hamcrest.Matchers.not;
import static org.junit.Assert.assertThat;
import static org.hamcrest.Matchers.emptyIterable;
import java.util.Collections;
import java.util.List;
@ -56,6 +57,7 @@ public class HamcrestExamplesUnitTest {
public final void givenCollectionIsEmpty_whenChecking_thenEmpty() {
final List<String> collection = Lists.newArrayList();
assertThat(collection, empty());
assertThat(collection, emptyIterable());
}
@Test