Rename EosCommonSpi package name
[mdsal.git] / entityownership / mdsal-eos-common-spi / src / test / java / org / opendaylight / mdsal / eos / common / spi / AbstractGenericEntityOwnershipListenerRegistrationTest.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.eos.common.spi;
9
10 import static org.junit.Assert.assertTrue;
11 import static org.mockito.Mockito.mock;
12
13 import org.junit.Test;
14 import org.opendaylight.mdsal.eos.common.api.GenericEntityOwnershipListener;
15 import org.opendaylight.mdsal.eos.common.spi.AbstractGenericEntityOwnershipListenerRegistration;
16
17 public class AbstractGenericEntityOwnershipListenerRegistrationTest
18         extends AbstractGenericEntityOwnershipListenerRegistration {
19
20     @Test
21     public void basicTest() throws Exception {
22         assertTrue(this.getEntityType().contains("testEntity"));
23     }
24
25     public AbstractGenericEntityOwnershipListenerRegistrationTest() {
26         super(mock(GenericEntityOwnershipListener.class), "testEntity");
27     }
28
29     @Override
30     protected void removeRegistration() {
31         // NOOP
32     }
33 }