Skip to content

Instantly share code, notes, and snippets.

@rschumm
Created June 1, 2012 08:30
Show Gist options
  • Select an option

  • Save rschumm/2850334 to your computer and use it in GitHub Desktop.

Select an option

Save rschumm/2850334 to your computer and use it in GitHub Desktop.
JUnit excepted Exception
@Rule
public ExpectedException thrown = ExpectedException.none();
//Test, der eine Exception mit der Massage "bla" erwartet.
@Test
public void testNothingFoundServer() throws Exception {
thrown.expectMessage("bla");
thrown.expect(FakeUnmarshallNothingFoundException.class);
codeDerKnallt();
}
@rschumm

rschumm commented Jun 1, 2012

Copy link
Copy Markdown
Author

nein, die Idee war, die erwartete Exception eben auch auf die Message zu prüfen, nicht nur deren Auftreten.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment