assertDoublePredicate(test, UncheckedException.class);
}
@Test
public void testCheckedDoublePredicateWithCustomHandler() {
DoublePredicate test = Unchecked.doublePredicate(
d -> {
throw new Exception("" + d);
},
e -> {
throw new IllegalStateException(e);