Add unit tests for Envelope classes
[controller.git] / opendaylight / md-sal / cds-access-api / src / test / java / org / opendaylight / controller / cluster / access / concepts / SuccessEnvelopeTest.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.concepts;
9
10 import org.junit.Assert;
11 import org.opendaylight.controller.cluster.access.commands.TransactionAbortSuccess;
12
13 public class SuccessEnvelopeTest extends AbstractEnvelopeTest<SuccessEnvelope> {
14
15     @Override
16     protected SuccessEnvelope createEnvelope() {
17         final RequestSuccess<?, ?> message = new TransactionAbortSuccess(OBJECT, 2L);
18         return new SuccessEnvelope(message, 1L, 2L, 11L);
19     }
20
21     @Override
22     protected void doAdditionalAssertions(final SuccessEnvelope envelope,
23                                           final SuccessEnvelope resolvedObject) {
24         Assert.assertEquals(envelope.getExecutionTimeNanos(), resolvedObject.getExecutionTimeNanos());
25     }
26 }