Skip to content

Instantly share code, notes, and snippets.

@Kotlin-Native
Created July 15, 2015 13:00
Show Gist options
  • Select an option

  • Save Kotlin-Native/65e6ae853ab2fc16c66e to your computer and use it in GitHub Desktop.

Select an option

Save Kotlin-Native/65e6ae853ab2fc16c66e to your computer and use it in GitHub Desktop.
List list = Arrays.asList("foo", "bar");
assertThat(list, is(not(empty())));
assertThat(list.get(0), is("foo"));
assertThat(list, hasItem("bar"));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment