Unit tests for AbstractRequestProxy derived classes
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / commands / TransactionAbortRequestProxyV1Test.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.concepts.AbstractRequestProxyTest;
13 import org.opendaylight.controller.cluster.access.concepts.Request;
14
15 public class TransactionAbortRequestProxyV1Test extends AbstractRequestProxyTest<TransactionAbortRequestProxyV1> {
16     private static final TransactionAbortRequest REQUEST = new TransactionAbortRequest(
17             TRANSACTION_IDENTIFIER, 0, ACTOR_REF);
18     private static final TransactionAbortRequestProxyV1 OBJECT = new TransactionAbortRequestProxyV1(REQUEST);
19
20     @Override
21     public TransactionAbortRequestProxyV1 object() {
22         return OBJECT;
23     }
24
25     @Test
26     public void createRequestTest() {
27         final Request request = object().createRequest(TRANSACTION_IDENTIFIER, 0, ACTOR_REF);
28         Assert.assertNotNull(request);
29     }
30 }