Junit5 allows you to assertThrows using Java8 Lambda syntax: https://howtodoinjava.com/junit5/expected-exception-example
Their example:
@Testvoid testExpectedException() { Assertions.assertThrows(NumberFormatException.class, () -> { Integer.parseInt("One"); });}