Skip to content

Instantly share code, notes, and snippets.

@wfng92
Last active March 18, 2021 10:45
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 wfng92/4b3cfe801cc44f01d9728b624357d906 to your computer and use it in GitHub Desktop.
Save wfng92/4b3cfe801cc44f01d9728b624357d906 to your computer and use it in GitHub Desktop.
import static org.junit.jupiter.api.Assertions.assertEquals;
import org.junit.jupiter.api.Test;
class MyFirstJUnitJupiterTests {
@Test
void runningTest() {
assertEquals(2, 1 + 1);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment