assertLongUnaryOperator(test, UncheckedException.class);
}
@Test
public void testCheckedLongUnaryOperatorWithCustomHandler() {
LongUnaryOperator test = Unchecked.longUnaryOperator(
l -> {
throw new Exception("" + l);
},
e -> {
throw new IllegalStateException(e);