BUG-5280: add frontend state lifecycle
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / persisted / AbortTransactionPayloadTest.java
index aa2a9dbe1096d3c2e3ea7495da3aa5bd71f94851..43b2c9eaa99725d932178d52c84e84b914fbbde2 100644 (file)
@@ -9,14 +9,13 @@ package org.opendaylight.controller.cluster.datastore.persisted;
 
 import static org.junit.Assert.assertEquals;
 
-import java.io.IOException;
 import org.apache.commons.lang3.SerializationUtils;
 import org.junit.Test;
 import org.opendaylight.controller.cluster.datastore.AbstractTest;
 
 public class AbortTransactionPayloadTest extends AbstractTest {
     @Test
-    public void testPayloadSerDes() throws IOException {
+    public void testPayloadSerDes() {
         final AbortTransactionPayload template = AbortTransactionPayload.create(nextTransactionId());
         final AbortTransactionPayload cloned = SerializationUtils.clone(template);
         assertEquals(template.getIdentifier(), cloned.getIdentifier());