Do not use ListenerRegistration in mdsal-dom-api
[mdsal.git] / dom / mdsal-dom-spi / src / test / java / org / opendaylight / mdsal / dom / spi / AbstractDOMRpcImplementationRegistrationTest.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.junit.Assert.assertEquals;
11 import static org.mockito.Mockito.mock;
12
13 import org.junit.Test;
14 import org.opendaylight.mdsal.dom.api.DOMRpcImplementation;
15
16 public class AbstractDOMRpcImplementationRegistrationTest
17         extends AbstractDOMRpcImplementationRegistration<DOMRpcImplementation> {
18
19     private static final DOMRpcImplementation DOM_RPC_IMPLEMENTATION = mock(DOMRpcImplementation.class);
20
21     public AbstractDOMRpcImplementationRegistrationTest() {
22         super(DOM_RPC_IMPLEMENTATION);
23     }
24
25     @Test
26     public void basicTest() throws Exception {
27         AbstractDOMRpcImplementationRegistration<?> abstractDOMRpcImplementationRegistration =
28                 new AbstractDOMRpcImplementationRegistrationTest();
29         assertEquals(DOM_RPC_IMPLEMENTATION, abstractDOMRpcImplementationRegistration.getInstance());
30         abstractDOMRpcImplementationRegistration.close();
31     }
32
33     @Override
34     protected void removeRegistration() {
35         // NOOP
36     }
37 }