Adding routed RPC support in Remote RPC Router
[controller.git] / opendaylight / md-sal / sal-remoterpc-connector / implementation / src / test / java / org / opendaylight / controller / sal / connector / remoterpc / RouteIdentifierImplTest.java
diff --git a/opendaylight/md-sal/sal-remoterpc-connector/implementation/src/test/java/org/opendaylight/controller/sal/connector/remoterpc/RouteIdentifierImplTest.java b/opendaylight/md-sal/sal-remoterpc-connector/implementation/src/test/java/org/opendaylight/controller/sal/connector/remoterpc/RouteIdentifierImplTest.java
deleted file mode 100644 (file)
index 468d782..0000000
+++ /dev/null
@@ -1,62 +0,0 @@
-/*
- * Copyright (c) 2013 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.sal.connector.remoterpc;
-
-import java.net.URI;
-
-import com.fasterxml.jackson.core.JsonParseException;
-import org.junit.Assert;
-import org.junit.Test;
-import org.opendaylight.controller.sal.connector.api.RpcRouter;
-import org.opendaylight.controller.sal.connector.remoterpc.dto.RouteIdentifierImpl;
-import org.opendaylight.yangtools.yang.common.QName;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class RouteIdentifierImplTest {
-
-  Logger _logger = LoggerFactory.getLogger(RouteIdentifierImplTest.class);
-
-  private final URI namespace = URI.create("http://cisco.com/example");
-  private final QName QNAME = new QName(namespace, "heartbeat");
-
-  @Test
-  public void testToString() throws Exception {
-    RouteIdentifierImpl rId = new RouteIdentifierImpl();
-    rId.setType(QNAME);
-
-    _logger.debug(rId.toString());
-
-    Assert.assertTrue(true);
-
-  }
-
-  @Test
-  public void testFromString() throws Exception {
-    RouteIdentifierImpl rId = new RouteIdentifierImpl();
-    rId.setType(QNAME);
-
-    String s = rId.toString();
-    _logger.debug("serialized route: {}", s);
-
-    RpcRouter.RouteIdentifier ref = new RouteIdentifierImpl().fromString(s);
-    _logger.debug("deserialized route: {}", ref);
-
-    Assert.assertTrue(true);
-  }
-
-  @Test(expected = JsonParseException.class)
-  public void testFromInvalidString() throws Exception {
-    String invalidInput = "aklhdgadfa;;;;;;;]]]]=]ag" ;
-    RouteIdentifierImpl rId = new RouteIdentifierImpl();
-    rId.fromString(invalidInput);
-
-    _logger.debug("" + rId);
-    Assert.assertTrue(true);
-  }
-}