Skip to content

Instantly share code, notes, and snippets.

@mauricioaniche
Created April 25, 2017 11:28
Show Gist options
  • Save mauricioaniche/2d5e1fd385fe10adb1b1cbb3546a9901 to your computer and use it in GitHub Desktop.
Save mauricioaniche/2d5e1fd385fe10adb1b1cbb3546a9901 to your computer and use it in GitHub Desktop.
class X{
public void x() {
assertEquals("Frodo", frodo.getName());
assertNotEquals(frodo, sauron);
assertThat(frodo.getName()).isEqualTo("Frodo");
assertThat(frodo).isNotEqualTo(sauron);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment