Skip to content

Instantly share code, notes, and snippets.

@frekele
Created December 1, 2020 07:47
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