X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FReadyTransactionReplyTest.java;h=033687ae6db486aafc6b306018b4be4aa5083988;hp=db525eafbeb5b762f82101e8237c7feb7e6bf205;hb=80f668c77ef358ba5fbc53b0332597bd2c4844c2;hpb=f89552de4942d3709d6ee84415e672c6c7de489f diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReplyTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReplyTest.java index db525eafbe..033687ae6d 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReplyTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/messages/ReadyTransactionReplyTest.java @@ -12,7 +12,6 @@ import java.io.Serializable; import org.apache.commons.lang.SerializationUtils; import org.junit.Test; import org.opendaylight.controller.cluster.datastore.DataStoreVersions; -import org.opendaylight.controller.protobuff.messages.transaction.ShardTransactionMessages; /** * Unit tests for ReadyTransactionReply. @@ -34,18 +33,4 @@ public class ReadyTransactionReplyTest { assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion()); assertEquals("getCohortPath", cohortPath, actual.getCohortPath()); } - - @Test - public void testSerializationWithPreLithiumVersion() throws Exception { - String cohortPath = "cohort path"; - ReadyTransactionReply expected = new ReadyTransactionReply(cohortPath, DataStoreVersions.HELIUM_2_VERSION); - - Object serialized = expected.toSerializable(); - assertEquals("Serialized type", ShardTransactionMessages.ReadyTransactionReply.class, serialized.getClass()); - - ReadyTransactionReply actual = ReadyTransactionReply.fromSerializable(SerializationUtils.clone( - (Serializable) serialized)); - assertEquals("getVersion", DataStoreVersions.HELIUM_2_VERSION, actual.getVersion()); - assertEquals("getCohortPath", cohortPath, actual.getCohortPath()); - } }