Improve segmented journal actor metrics
[controller.git] / opendaylight / md-sal / sal-binding-broker / src / test / java / org / opendaylight / controller / md / sal / binding / test / AssertCollections.java
diff --git a/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/AssertCollections.java b/opendaylight/md-sal/sal-binding-broker/src/test/java/org/opendaylight/controller/md/sal/binding/test/AssertCollections.java
deleted file mode 100644 (file)
index 25b91bc..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-package org.opendaylight.controller.md.sal.binding.test;
-
-import java.util.Collection;
-import java.util.Map;
-
-import org.junit.Assert;
-
-public class AssertCollections {
-
-    public static void assertEmpty(final Collection<?> set) {
-        Assert.assertTrue(set.isEmpty());
-    }
-
-    public static void assertEmpty(final Map<?,?> set) {
-        Assert.assertTrue(set.isEmpty());
-    }
-
-    public static void assertContains(final Collection<?> set, final Object... values) {
-        for (Object key : values) {
-            Assert.assertTrue(set.contains(key));
-        }
-
-    }
-
-    public static void assertNotContains(final Collection<?> set, final Object... values) {
-        for (Object key : values) {
-            Assert.assertFalse(set.contains(key));
-        }
-    }
-
-    public static void assertContains(final Map<?,?> map, final Object... values) {
-        for (Object key : values) {
-            Assert.assertTrue(map.containsKey(key));
-        }
-    }
-
-    public static void assertNotContains(final Map<?,?> map, final Object... values) {
-        for (Object key : values) {
-            Assert.assertFalse(map.containsKey(key));
-        }
-    }
-}