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 @Test
void assertThrowsException() { void assertThrowsException() {
String str = null; String str = null;
assertThrows(IllegalArgumentException.class, () -> { assertThrows(IllegalArgumentException.class, () -> Integer.valueOf(str));
Integer.valueOf(str);
});
} }
@Test @Test