X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fmessages%2FReadyTransactionReplyTest.java;h=033687ae6db486aafc6b306018b4be4aa5083988;hb=93e6f3bfc003d4ce2d968761dff963615a0b799d;hp=db525eafbeb5b762f82101e8237c7feb7e6bf205;hpb=2727bea09c83646b6cbd2ef9672d0b7f6cf3b22f;p=controller.git 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()); - } }