Initial commit for the ClusteredDataStore
[controller.git] / opendaylight / md-sal / clustered-data-store / implementation / src / test / java / org / opendaylight / controller / datastore / internal / ActivatorTest.java
1 package org.opendaylight.controller.datastore.internal;
2
3 import org.junit.Test;
4
5 import static junit.framework.Assert.assertNotNull;
6
7 public class ActivatorTest {
8
9     @Test
10     public void construct(){
11         assertNotNull(new Activator());
12     }
13 }