creating a default subnet
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / src / test / java / org / opendaylight / controller / datastore / internal / ClusteredDataStoreTest.java
1 package org.opendaylight.controller.datastore.internal;
2
3 import org.junit.Test;
4
5 import static org.junit.Assert.assertNotNull;
6
7 public class ClusteredDataStoreTest {
8     @Test
9     public void construct(){
10         assertNotNull(new ClusteredDataStore());
11     }
12 }