Specify initial serialization buffer capacity for Payloads
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / ReadyTransactionReplyTest.java
index db525eafbeb5b762f82101e8237c7feb7e6bf205..049c17cb437f635c293f91ec9515d727420b01b4 100644 (file)
@@ -8,11 +8,11 @@
 package org.opendaylight.controller.cluster.datastore.messages;
 
 import static org.junit.Assert.assertEquals;
+
 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 +34,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());
-    }
 }