X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-eos%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fentityownership%2FAbstractClusterRefEntityOwnershipTest.java;fp=opendaylight%2Fmd-sal%2Fsal-distributed-eos%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fentityownership%2FAbstractClusterRefEntityOwnershipTest.java;h=0000000000000000000000000000000000000000;hb=118c8b39d7bece6c3dc4adb8e27401a325b69692;hp=6d127c366c64d453a5b66d51ed65d2dbb5e5bda4;hpb=d8deaa4381251e0900a6ba50d1f16bab47ab8491;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-eos/src/test/java/org/opendaylight/controller/cluster/entityownership/AbstractClusterRefEntityOwnershipTest.java b/opendaylight/md-sal/sal-distributed-eos/src/test/java/org/opendaylight/controller/cluster/entityownership/AbstractClusterRefEntityOwnershipTest.java deleted file mode 100644 index 6d127c366c..0000000000 --- a/opendaylight/md-sal/sal-distributed-eos/src/test/java/org/opendaylight/controller/cluster/entityownership/AbstractClusterRefEntityOwnershipTest.java +++ /dev/null @@ -1,35 +0,0 @@ -/* - * Copyright (c) 2016 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 - */ - -package org.opendaylight.controller.cluster.entityownership; - -import akka.actor.ActorSystem; -import akka.testkit.javadsl.TestKit; -import com.typesafe.config.ConfigFactory; -import org.junit.AfterClass; -import org.junit.BeforeClass; - -public class AbstractClusterRefEntityOwnershipTest extends AbstractEntityOwnershipTest { - - private static ActorSystem system; - - @BeforeClass - public static void setUpClass() { - system = ActorSystem.create("test", ConfigFactory.load().getConfig("test-config")); - } - - @AfterClass - public static void tearDownClass() { - TestKit.shutdownActorSystem(system); - system = null; - } - - protected static ActorSystem getSystem() { - return system; - } -}