Fix lead transaction cancellation
[mdsal.git] / dom / mdsal-dom-spi / src / test / java / org / opendaylight / mdsal / dom / spi / ForwardingDOMRpcResultTest.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. 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.mdsal.dom.spi;
9
10 import static org.mockito.Mockito.doReturn;
11 import static org.mockito.Mockito.verify;
12
13 import org.junit.Test;
14 import org.junit.runner.RunWith;
15 import org.mockito.Mock;
16 import org.mockito.junit.MockitoJUnitRunner;
17 import org.opendaylight.mdsal.dom.api.DOMRpcResult;
18
19 @RunWith(MockitoJUnitRunner.StrictStubs.class)
20 public class ForwardingDOMRpcResultTest extends ForwardingDOMRpcResult {
21     @Mock(name = "domRpcResult")
22     public DOMRpcResult domRpcResult;
23
24     @Test
25     public void basicTest() throws Exception {
26         doReturn(null).when(domRpcResult).getErrors();
27         this.getErrors();
28         verify(domRpcResult).getErrors();
29
30         doReturn(null).when(domRpcResult).getResult();
31         this.getResult();
32         verify(domRpcResult).getResult();
33     }
34
35     @Override
36     protected DOMRpcResult delegate() {
37         return domRpcResult;
38     }
39 }