44bb4b3528447a26d91376ebb9150343f2118d6f
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / identifiers / ShardManagerIdentifierTest.java
1 package org.opendaylight.controller.cluster.datastore.identifiers;
2
3 import org.junit.Test;
4
5 import static org.junit.Assert.assertEquals;
6
7     public class ShardManagerIdentifierTest {
8
9     @Test
10     public void testIdentifier(){
11         assertEquals("shardmanager-operational", ShardManagerIdentifier.builder().type("operational").build().toString());
12     }
13
14 }