Remove ListenerRegistration protobuff messages
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / RegisterChangeListenerReplyTest.java
diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/messages/RegisterChangeListenerReplyTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/messages/RegisterChangeListenerReplyTest.java
deleted file mode 100644 (file)
index 6052d3f..0000000
+++ /dev/null
@@ -1,66 +0,0 @@
-/*
- * Copyright (c) 2015 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.datastore.messages;
-
-import static junit.framework.TestCase.assertEquals;
-import akka.actor.Actor;
-import akka.serialization.Serialization;
-import akka.testkit.TestActorRef;
-import org.junit.After;
-import org.junit.Before;
-import org.junit.Test;
-import org.opendaylight.controller.cluster.datastore.AbstractActorTest;
-import org.opendaylight.controller.cluster.raft.TestActorFactory;
-import org.opendaylight.controller.cluster.raft.utils.MessageCollectorActor;
-import org.opendaylight.controller.protobuff.messages.registration.ListenerRegistrationMessages;
-
-public class RegisterChangeListenerReplyTest extends AbstractActorTest {
-
-    private TestActorFactory factory;
-
-
-    @Before
-    public void setUp(){
-        factory = new TestActorFactory(getSystem());
-    }
-
-    @After
-    public void shutDown(){
-        factory.close();
-    }
-
-    @Test
-    public void testToSerializable(){
-        TestActorRef<Actor> testActor = factory.createTestActor(MessageCollectorActor.props());
-
-        RegisterChangeListenerReply registerChangeListenerReply = new RegisterChangeListenerReply(testActor);
-
-        ListenerRegistrationMessages.RegisterChangeListenerReply serialized
-                = registerChangeListenerReply.toSerializable();
-
-        assertEquals(Serialization.serializedActorPath(testActor), serialized.getListenerRegistrationPath());
-    }
-
-    @Test
-    public void testFromSerializable(){
-        TestActorRef<Actor> testActor = factory.createTestActor(MessageCollectorActor.props());
-
-        RegisterChangeListenerReply registerChangeListenerReply = new RegisterChangeListenerReply(testActor);
-
-        ListenerRegistrationMessages.RegisterChangeListenerReply serialized
-                = registerChangeListenerReply.toSerializable();
-
-
-        RegisterChangeListenerReply fromSerialized
-                = RegisterChangeListenerReply.fromSerializable(getSystem(), serialized);
-
-        assertEquals(testActor.path().toString(), fromSerialized.getListenerRegistrationPath().toString());
-    }
-
-}
\ No newline at end of file