8755eee95ff075c8b50b335087a5de77d7f670e2
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / TransactionAbortSuccessTest.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 TransactionAbortSuccessTest extends AbstractTransactionSuccessTest<TransactionAbortSuccess> {
16     private static final TransactionAbortSuccess OBJECT = new TransactionAbortSuccess(TRANSACTION_IDENTIFIER, 0);
17
18     public TransactionAbortSuccessTest() {
19         super(OBJECT, 98, 485);
20     }
21
22     @Test
23     public void cloneAsVersionTest() {
24         final var clone = OBJECT.cloneAsVersion(ABIVersion.BORON);
25         assertEquals(OBJECT.getSequence(), clone.getSequence());
26         assertEquals(OBJECT.getTarget(), clone.getTarget());
27     }
28 }