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 f1619d0..0000000
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
- *
- * This program and the accompanying materials are made available under the
- * terms of the Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- */
-
-package org.opendaylight.controller.md.sal.binding.test;
-
-import java.util.Collection;
-import java.util.Map;
-import org.junit.Assert;
-
-public final class AssertCollections {
-    private 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 assertContains(final Map<?,?> map, final Object... values) {
-        for (Object key : values) {
-            Assert.assertTrue(map.containsKey(key));
-        }
-    }
-
-    public static void assertNotContains(final Collection<?> set, final Object... values) {
-        for (Object key : values) {
-            Assert.assertFalse(set.contains(key));
-        }
-    }
-
-    public static void assertNotContains(final Map<?,?> map, final Object... values) {
-        for (Object key : values) {
-            Assert.assertFalse(map.containsKey(key));
-        }
-    }
-}