Skip to content

Instantly share code, notes, and snippets.

@jarrad
Last active July 20, 2016 19:40
Show Gist options
  • Save jarrad/01eaa79f4752f6e51b13e68de7da3fba to your computer and use it in GitHub Desktop.
Save jarrad/01eaa79f4752f6e51b13e68de7da3fba to your computer and use it in GitHub Desktop.
Assert an Exception was thrown in JUnit with lambdas
assertThrows(MyException.class,
() -> systemUnderTest.throwingMethod());
// now do other testy things
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment