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%2Fshardstrategy%2FShardStrategyFactoryTest.java;h=ed4467df8e055b329cbd59cf34490b8583b538f6;hb=c796596b5c46b5203c30b143e6282662e66c5642;hp=3d7276c66cd15a37efbfc7c295ff587bc620b28c;hpb=ffc46de334c8a903844b9f4aff73dc68b2401659;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java index 3d7276c66c..ed4467df8e 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java @@ -10,7 +10,7 @@ package org.opendaylight.controller.cluster.datastore.shardstrategy; import static org.junit.Assert.assertNotNull; import static org.junit.Assert.assertTrue; -import org.junit.BeforeClass; +import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; @@ -21,26 +21,25 @@ import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; public class ShardStrategyFactoryTest { + ShardStrategyFactory factory; + @Rule public ExpectedException expectedEx = ExpectedException.none(); - @BeforeClass - public static void setUpClass(){ - ShardStrategyFactory.setConfiguration(new ConfigurationImpl("module-shards.conf", "modules.conf")); + @Before + public void setUp() { + factory = new ShardStrategyFactory(new ConfigurationImpl("module-shards.conf", "modules.conf")); } @Test public void testGetStrategy() { - ShardStrategy strategy = - ShardStrategyFactory.getStrategy(TestModel.TEST_PATH); + ShardStrategy strategy = factory.getStrategy(TestModel.TEST_PATH); assertNotNull(strategy); } @Test public void testGetStrategyForKnownModuleName() { - ShardStrategy strategy = - ShardStrategyFactory.getStrategy( - YangInstanceIdentifier.of(CarsModel.BASE_QNAME)); + ShardStrategy strategy = factory.getStrategy(YangInstanceIdentifier.of(CarsModel.BASE_QNAME)); assertTrue(strategy instanceof ModuleShardStrategy); } @@ -50,7 +49,7 @@ public class ShardStrategyFactoryTest { expectedEx.expect(NullPointerException.class); expectedEx.expectMessage("path should not be null"); - ShardStrategyFactory.getStrategy(null); + factory.getStrategy(null); } }