Skip to content

Instantly share code, notes, and snippets.

@wkorando
Created March 13, 2018 02:46
Show Gist options
  • Save wkorando/3dd5e9fabb3bd1fd43fb228f6fa630d3 to your computer and use it in GitHub Desktop.
Save wkorando/3dd5e9fabb3bd1fd43fb228f6fa630d3 to your computer and use it in GitHub Desktop.
@Test
public void testInfo(TestInfo testInfo) {
assertAll(() -> throwerrors("Just throwing"),
() -> throwerrors("Some random"),
() -> throwerrors("errors"));
}
public void throwerrors(String message) {
throw new RuntimeException(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment