ea74020f33178311d55de9d242db170539b368d9
[mdsal.git] / entityownership / mdsal-eos-common-spi / src / test / java / org / opendaylight / mdsal / common / api / clustering / AbstractGenericEntityOwnershipCandidateRegistrationTest.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.common.api.clustering;
9
10 import static org.junit.Assert.assertNotNull;
11 import static org.mockito.Mockito.mock;
12
13 import org.junit.Test;
14
15 public class AbstractGenericEntityOwnershipCandidateRegistrationTest
16         extends AbstractGenericEntityOwnershipCandidateRegistration {
17
18     @Test
19     public void basicTest() {
20         assertNotNull(this);
21     }
22
23     public AbstractGenericEntityOwnershipCandidateRegistrationTest() {
24         super(mock(GenericEntity.class));
25     }
26
27     @Override
28     protected void removeRegistration() {
29         //NOOP
30     }
31 }