Fix unit test CS warnings in sal-distributed-datastore
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / CloseTransactionTest.java
1 /*
2  * Copyright (c) 2016 Brocade Communications Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.cluster.datastore.messages;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.io.Serializable;
13 import org.apache.commons.lang.SerializationUtils;
14 import org.junit.Test;
15 import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
16
17 /**
18  * Unit test for CloseTransaction and CloseTransactionReply.
19  *
20  * @author Thomas Pantelis
21  */
22 public class CloseTransactionTest {
23     @Test
24     public void testCloseTransactionSerialization() {
25         CloseTransaction expected = new CloseTransaction(DataStoreVersions.CURRENT_VERSION);
26
27         Object serialized = expected.toSerializable();
28         assertEquals("Serialized type", CloseTransaction.class, serialized.getClass());
29
30         CloseTransaction actual = (CloseTransaction)SerializationUtils.clone((Serializable) serialized);
31         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
32     }
33
34     @Test
35     public void testCloseTransactionReplySerialization() {
36         CloseTransactionReply expected = new CloseTransactionReply();
37
38         Object serialized = expected.toSerializable();
39         assertEquals("Serialized type", CloseTransactionReply.class, serialized.getClass());
40
41         CloseTransactionReply actual = (CloseTransactionReply)SerializationUtils.clone((Serializable) serialized);
42         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
43     }
44 }