Metrics and Configuration
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / src / test / java / org / opendaylight / controller / remote / rpc / ActorSystemFactoryTest.java
diff --git a/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/ActorSystemFactoryTest.java b/opendaylight/md-sal/sal-remoterpc-connector/src/test/java/org/opendaylight/controller/remote/rpc/ActorSystemFactoryTest.java
deleted file mode 100644 (file)
index cd1cd91..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;
-
-
-import akka.actor.ActorSystem;
-import com.typesafe.config.ConfigFactory;
-import junit.framework.Assert;
-import org.junit.After;
-import org.junit.Test;
-import org.opendaylight.controller.remote.rpc.utils.AkkaConfigurationReader;
-import org.osgi.framework.Bundle;
-import org.osgi.framework.BundleContext;
-
-import static org.junit.Assert.fail;
-import static org.mockito.Mockito.mock;
-import static org.mockito.Mockito.when;
-
-public class ActorSystemFactoryTest {
-  ActorSystem system = null;
-
-  @Test
-  public void testActorSystemCreation(){
-    BundleContext context = mock(BundleContext.class);
-    when(context.getBundle()).thenReturn(mock(Bundle.class));
-
-    AkkaConfigurationReader reader = mock(AkkaConfigurationReader.class);
-    when(reader.read()).thenReturn(ConfigFactory.load());
-
-    ActorSystemFactory.createInstance(context, reader);
-    system = ActorSystemFactory.getInstance();
-    Assert.assertNotNull(system);
-    // Check illegal state exception
-
-    try {
-      ActorSystemFactory.createInstance(context, reader);
-      fail("Illegal State exception should be thrown, while creating actor system second time");
-    } catch (IllegalStateException e) {
-    }
-  }
-
-  @After
-  public void cleanup() throws InterruptedException {
-    if(system != null) {
-      system.shutdown();
-    }
-  }
-}