Fix warnings in sal-akka-raft test classes
[controller.git] / opendaylight / md-sal / sal-akka-raft / src / test / java / org / opendaylight / controller / cluster / raft / messages / InstallSnapshotReplyTest.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.raft.messages;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.apache.commons.lang.SerializationUtils;
13 import org.junit.Test;
14
15 /**
16  * Unit tests for InstallSnapshotReply.
17  *
18  * @author Thomas Pantelis
19  */
20 public class InstallSnapshotReplyTest {
21
22     @Test
23     public void testSerialization() {
24         InstallSnapshotReply expected = new InstallSnapshotReply(5L, "follower", 1, true);
25         InstallSnapshotReply cloned = (InstallSnapshotReply) SerializationUtils.clone(expected);
26
27         assertEquals("getTerm", expected.getTerm(), cloned.getTerm());
28         assertEquals("getFollowerId", expected.getFollowerId(), cloned.getFollowerId());
29         assertEquals("getChunkIndex", expected.getChunkIndex(), cloned.getChunkIndex());
30         assertEquals("isSuccess", expected.isSuccess(), cloned.isSuccess());
31     }
32 }