Rename package in EosCommonApi
[mdsal.git] / entityownership / mdsal-eos-dom-api / src / test / java / org / opendaylight / mdsal / dom / api / clustering / DOMEntityOwnershipChangeTest.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.api.clustering;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import org.junit.Test;
13 import org.opendaylight.mdsal.eos.common.api.EntityOwnershipChangeState;
14 import org.opendaylight.yangtools.yang.common.QName;
15 import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
16
17 public class DOMEntityOwnershipChangeTest {
18     private static final String ENTITY_TYPE = "type";
19     private static final YangInstanceIdentifier ID = YangInstanceIdentifier.of(QName.create("test"));
20     private static final DOMEntity ENTITY = new DOMEntity(ENTITY_TYPE, ID);
21
22     @Test
23     public void createTest() {
24         assertNotNull(new DOMEntityOwnershipChange(ENTITY, EntityOwnershipChangeState.LOCAL_OWNERSHIP_GRANTED));
25         assertNotNull(new DOMEntityOwnershipChange(ENTITY, EntityOwnershipChangeState.LOCAL_OWNERSHIP_GRANTED, false));
26     }
27 }