Fixup checkstyle
[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 static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.controller.cluster.access.ABIVersion;
14
15 public class ModifyTransactionSuccessTest extends AbstractTransactionSuccessTest<ModifyTransactionSuccess> {
16     private static final ModifyTransactionSuccess OBJECT = new ModifyTransactionSuccess(TRANSACTION_IDENTIFIER, 0);
17
18     public ModifyTransactionSuccessTest() {
19         super(OBJECT, 98);
20     }
21
22     @Test
23     public void cloneAsVersionTest() {
24         final var clone = OBJECT.cloneAsVersion(ABIVersion.TEST_FUTURE_VERSION);
25         assertEquals(ABIVersion.TEST_FUTURE_VERSION, clone.getVersion());
26         assertEquals(OBJECT.getSequence(), clone.getSequence());
27         assertEquals(OBJECT.getTarget(), clone.getTarget());
28     }
29 }