Skip to content

Instantly share code, notes, and snippets.

@mfebrianto
Last active September 1, 2022 12:15
Show Gist options
  • Save mfebrianto/27956d9e911153329859c4c177631e0e to your computer and use it in GitHub Desktop.
Save mfebrianto/27956d9e911153329859c4c177631e0e to your computer and use it in GitHub Desktop.
simplest form of junit
@Test
public void itWillReturnTrue() {
String expected = "Ramesh";
String actual = "Ramesh";
assertEquals(expected, actual);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment