Skip to content

Instantly share code, notes, and snippets.

@atomgomba
Created February 22, 2017 10:30
Show Gist options
  • Save atomgomba/b21b6acf76fe3ea9df6887f33d211c22 to your computer and use it in GitHub Desktop.
Save atomgomba/b21b6acf76fe3ea9df6887f33d211c22 to your computer and use it in GitHub Desktop.
Assert an exception
Baby baby = new Baby();
boolean exceptionWasThrown = false;
try {
baby.removeToy();
} catch (ToyNotExistsException e) {
exceptionWasThrown = true;
}
assertTrue(exceptionWasThrown);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment