Skip to content

Instantly share code, notes, and snippets.

@frekele
Created December 1, 2020 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save frekele/43494cb87b2b3433f0adbe06cbadf161 to your computer and use it in GitHub Desktop.
Save frekele/43494cb87b2b3433f0adbe06cbadf161 to your computer and use it in GitHub Desktop.
class CalculatorJUnit5Tests {
private final Calculator calculator = new Calculator();
@Test
void addition() {
assertEquals(2, calculator.add(1, 1));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment