Unit test for RequestSuccess.java and derived classes
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / AbstractTransactionSuccessTest.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.opendaylight.controller.cluster.access.concepts.TransactionIdentifier;
11
12 public abstract class AbstractTransactionSuccessTest<T extends TransactionSuccess>
13         extends AbstractRequestSuccessTest {
14
15     protected static final TransactionIdentifier TRANSACTION_IDENTIFIER = new TransactionIdentifier(
16             HISTORY_IDENTIFIER, 0);
17
18 }