X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fidentifiers%2FShardManagerIdentifierTest.java;h=628584aa44c3e32fd5d4b6d61919cf2a41967a2f;hb=95c296a7c1e8e186a88a0a0dc82e080b2185db33;hp=44bb4b3528447a26d91376ebb9150343f2118d6f;hpb=886fe1a50077d9dc9c4c36f938fc7c86317cb149;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardManagerIdentifierTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardManagerIdentifierTest.java index 44bb4b3528..628584aa44 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardManagerIdentifierTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardManagerIdentifierTest.java @@ -1,14 +1,22 @@ -package org.opendaylight.controller.cluster.datastore.identifiers; +/* + * 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 + */ -import org.junit.Test; +package org.opendaylight.controller.cluster.datastore.identifiers; import static org.junit.Assert.assertEquals; - public class ShardManagerIdentifierTest { +import org.junit.Test; + +public class ShardManagerIdentifierTest { @Test - public void testIdentifier(){ - assertEquals("shardmanager-operational", ShardManagerIdentifier.builder().type("operational").build().toString()); + public void testIdentifier() { + assertEquals("shardmanager-operational", ShardManagerIdentifier.builder().type("operational") + .build().toString()); } - }