180181182183184185186187
Assert.assertFalse(got); } @Test public void canUseEveryWithArrays() { boolean got = Reductions.every(new Boolean[]{false}, new IsTrue()); Assert.assertFalse(got); }
187188189190191192193
} @Test(expected = IllegalArgumentException.class) public void cannotCallEveryWithNullIterable() { final Iterable<Boolean> iterable = null; Reductions.every(iterable, new IsTrue()); }