Improve segmented journal actor metrics
[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 static org.junit.Assert.assertEquals;
11
12 import org.opendaylight.controller.cluster.access.commands.TransactionAbortSuccess;
13
14 public class SuccessEnvelopeTest extends AbstractEnvelopeTest<SuccessEnvelope> {
15     @Override
16     protected EnvelopeDetails<SuccessEnvelope> createEnvelope() {
17         return new EnvelopeDetails<>(new SuccessEnvelope(new TransactionAbortSuccess(OBJECT, 2L), 1L, 2L, 11L), 180);
18     }
19
20     @Override
21     protected void doAdditionalAssertions(final SuccessEnvelope envelope, final SuccessEnvelope resolvedObject) {
22         assertEquals(envelope.getExecutionTimeNanos(), resolvedObject.getExecutionTimeNanos());
23     }
24 }