Align tested boolean/Boolean expectations
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / messages / AbortTransactionReplyTest.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 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertTrue;
13
14 import java.io.Serializable;
15 import org.apache.commons.lang.SerializationUtils;
16 import org.junit.Test;
17 import org.opendaylight.controller.cluster.datastore.DataStoreVersions;
18
19 /**
20  * Unit tests for AbortTransactionReply.
21  *
22  * @author Thomas Pantelis
23  */
24 public class AbortTransactionReplyTest {
25
26     @Test
27     public void testSerialization() {
28         AbortTransactionReply expected = AbortTransactionReply.instance(DataStoreVersions.CURRENT_VERSION);
29
30         Object serialized = expected.toSerializable();
31         assertEquals("Serialized type", AbortTransactionReply.class, serialized.getClass());
32
33         AbortTransactionReply actual = (AbortTransactionReply)SerializationUtils.clone((Serializable) serialized);
34         assertEquals("getVersion", DataStoreVersions.CURRENT_VERSION, actual.getVersion());
35     }
36
37     @Test
38     public void testIsSerializedType() {
39         assertTrue("isSerializedType", AbortTransactionReply.isSerializedType(new AbortTransactionReply()));
40         assertFalse("isSerializedType", AbortTransactionReply.isSerializedType(new Object()));
41     }
42 }