Unit tests for TransactionSuccess derived classes
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / ModifyTransactionSuccessTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.access.commands;
9
10 import org.junit.Assert;
11 import org.junit.Test;
12 import org.opendaylight.controller.cluster.access.ABIVersion;
13
14 public class ModifyTransactionSuccessTest extends AbstractTransactionSuccessTest<ModifyTransactionSuccess> {
15     private static final ModifyTransactionSuccess OBJECT = new ModifyTransactionSuccess(
16             TRANSACTION_IDENTIFIER, 0);
17
18     @Test
19     public void externalizableProxy() throws Exception {
20         final AbstractTransactionSuccessProxy<ModifyTransactionSuccess> proxy = OBJECT.externalizableProxy(
21                 ABIVersion.BORON);
22         Assert.assertNotNull(proxy);
23     }
24
25     @Test
26     public void cloneAsVersion() throws Exception {
27         final ModifyTransactionSuccess clone = OBJECT.cloneAsVersion(ABIVersion.BORON);
28         Assert.assertEquals(OBJECT.getVersion(), clone.getVersion());
29         Assert.assertEquals(OBJECT.getSequence(), clone.getSequence());
30         Assert.assertEquals(OBJECT.getTarget(), clone.getTarget());
31     }
32 }