Bug 7271: Modify AbstractDOMStoreTreeChangePublisher to batch candidates
[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 extends AbstractDOMRpcImplementationRegistration {
17
18     private static final DOMRpcImplementation DOM_RPC_IMPLEMENTATION = mock(DOMRpcImplementation.class);
19
20     @Test
21     public void basicTest() throws Exception {
22         AbstractDOMRpcImplementationRegistration abstractDOMRpcImplementationRegistration =
23                 new AbstractDOMRpcImplementationRegistrationTest();
24         assertEquals(DOM_RPC_IMPLEMENTATION, abstractDOMRpcImplementationRegistration.getInstance());
25     }
26
27     public AbstractDOMRpcImplementationRegistrationTest() {
28         super(DOM_RPC_IMPLEMENTATION);
29     }
30
31     @Override
32     protected void removeRegistration() {
33         // NOOP
34     }
35 }