X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=common%2Futil%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Futil%2FConstantArrayCollectionTest.java;fp=common%2Futil%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Futil%2FConstantArrayCollectionTest.java;h=bc0c2deaf6b8e6b618fcdb3c795b91886b25838c;hb=033943bb481f354f50ec30fa01930a26e21393a3;hp=c33c9cb7057e0892ab88b296d27b76d5dbcffe1e;hpb=b26aa45184c4a32373de46112c90d7570c092e18;p=yangtools.git diff --git a/common/util/src/test/java/org/opendaylight/yangtools/util/ConstantArrayCollectionTest.java b/common/util/src/test/java/org/opendaylight/yangtools/util/ConstantArrayCollectionTest.java index c33c9cb705..bc0c2deaf6 100644 --- a/common/util/src/test/java/org/opendaylight/yangtools/util/ConstantArrayCollectionTest.java +++ b/common/util/src/test/java/org/opendaylight/yangtools/util/ConstantArrayCollectionTest.java @@ -9,8 +9,8 @@ package org.opendaylight.yangtools.util; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; -import static org.junit.Assert.fail; import com.google.common.collect.ImmutableList; import com.google.common.collect.Iterables; @@ -63,46 +63,11 @@ public class ConstantArrayCollectionTest { public void testProtection() { final Collection c = create(); - try { - c.add(null); - fail(); - } catch (UnsupportedOperationException e) { - // OK - } - - try { - c.remove(null); - fail(); - } catch (UnsupportedOperationException e) { - // OK - } - - try { - c.addAll(null); - fail(); - } catch (UnsupportedOperationException e) { - // OK - } - - try { - c.removeAll(null); - fail(); - } catch (UnsupportedOperationException e) { - // OK - } - - try { - c.retainAll(null); - fail(); - } catch (UnsupportedOperationException e) { - // OK - } - - try { - c.clear(); - fail(); - } catch (UnsupportedOperationException e) { - // OK - } + assertThrows(UnsupportedOperationException.class, () -> c.add(null)); + assertThrows(UnsupportedOperationException.class, () -> c.remove(null)); + assertThrows(UnsupportedOperationException.class, () -> c.addAll(null)); + assertThrows(UnsupportedOperationException.class, () -> c.removeAll(null)); + assertThrows(UnsupportedOperationException.class, () -> c.retainAll(null)); + assertThrows(UnsupportedOperationException.class, () -> c.clear()); } }