Remove RoutingLogic interface
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / java / org / opendaylight / controller / remote / rpc / utils / LatestEntryRoutingLogicTest.java
diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/utils/LatestEntryRoutingLogicTest.java b/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/utils/LatestEntryRoutingLogicTest.java
deleted file mode 100644 (file)
index b8ddc37..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/*
- * Copyright (c) 2014 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.remote.rpc.utils;
-
-import static org.junit.Assert.assertTrue;
-
-import akka.actor.ActorRef;
-import akka.actor.ActorSystem;
-import akka.japi.Pair;
-import akka.testkit.TestProbe;
-import akka.testkit.javadsl.TestKit;
-import com.typesafe.config.ConfigFactory;
-import java.util.ArrayList;
-import java.util.List;
-import org.junit.AfterClass;
-import org.junit.BeforeClass;
-import org.junit.Test;
-
-public class LatestEntryRoutingLogicTest {
-    static ActorSystem system;
-
-    @BeforeClass
-    public static void setup() {
-        system = ActorSystem.create("opendaylight-rpc", ConfigFactory.load().getConfig("odl-cluster-rpc"));
-    }
-
-    @AfterClass
-    public static void teardown() {
-        TestKit.shutdownActorSystem(system);
-        system = null;
-    }
-
-    @Test
-    public void testRoutingLogic() {
-        List<Pair<ActorRef, Long>> pairList = new ArrayList<>();
-        TestProbe probe1 = new TestProbe(system);
-        TestProbe probe2 = new TestProbe(system);
-        TestProbe probe3 = new TestProbe(system);
-        ActorRef actor1 = probe1.ref();
-        ActorRef actor2 = probe2.ref();
-        ActorRef actor3 = probe3.ref();
-        pairList.add(new Pair<>(actor1, 1000L));
-        pairList.add(new Pair<>(actor2, 3000L));
-        pairList.add(new Pair<>(actor3, 2000L));
-        RoutingLogic logic = new LatestEntryRoutingLogic(pairList);
-        assertTrue(logic.select().equals(actor2));
-    }
-}