Initial commit for the ClusteredDataStore
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / src / test / java / org / opendaylight / controller / datastore / internal / ClusteredDataStoreTest.java
diff --git a/opendaylight/md-sal/clustered-data-store/implementation/src/test/java/org/opendaylight/controller/datastore/internal/ClusteredDataStoreTest.java b/opendaylight/md-sal/clustered-data-store/implementation/src/test/java/org/opendaylight/controller/datastore/internal/ClusteredDataStoreTest.java
new file mode 100644 (file)
index 0000000..7a8e8e8
--- /dev/null
@@ -0,0 +1,12 @@
+package org.opendaylight.controller.datastore.internal;
+
+import org.junit.Test;
+
+import static org.junit.Assert.assertNotNull;
+
+public class ClusteredDataStoreTest {
+    @Test
+    public void construct(){
+        assertNotNull(new ClusteredDataStore());
+    }
+}