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