Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

New useful functionality will be added:


  •  Check Check to throw exceptions:

Code Block
public void shouldRaiseAnException () throws Exception {
    Assertions.assertThrows(Exception.class, () -> {
            //...
    });
}

...