Skip to content

Instantly share code, notes, and snippets.

@preslavrachev
Last active February 5, 2016 12:08
Show Gist options
  • Save preslavrachev/c6c7cf653b0c7d5b35bd to your computer and use it in GitHub Desktop.
Save preslavrachev/c6c7cf653b0c7d5b35bd to your computer and use it in GitHub Desktop.
Hamcrest Cheatsheet

Hamcrest Cheatsheet

Collection Matchers

Check if a collection contains a single item

assertThat(collection, hasItem("item1"));
assertThat(collection, not(hasItem("item2")));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment