Statement lambda can be replaced with expression lambda

This commit is contained in:
Alex Golub 2022-04-20 14:03:48 +03:00
parent 2327a11eca
commit 37b5df83c5
1 changed files with 1 additions and 3 deletions

View File

@ -24,9 +24,7 @@ class ExceptionUnitTest {
@Test
void assertThrowsException() {
String str = null;
assertThrows(IllegalArgumentException.class, () -> {
Integer.valueOf(str);
});
assertThrows(IllegalArgumentException.class, () -> Integer.valueOf(str));
}
@Test