Skip to content

Instantly share code, notes, and snippets.

@beyondxscratch
Created July 14, 2022 22:11
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 beyondxscratch/2f6fffc15d1bf12619b40ff0c46624e4 to your computer and use it in GitHub Desktop.
Save beyondxscratch/2f6fffc15d1bf12619b40ff0c46624e4 to your computer and use it in GitHub Desktop.
@Test
void testThrowingException() {
Exception exception = assertThrows(RuntimeException.class,
() -> failingCodeToTest());
assertEquals("Failure!", exception.getMessage());
}
private void failingCodeToTest() {
throw new RuntimeException("Failure!"));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment