Clean up Datastore addressing
[mdsal.git] / binding / mdsal-binding-util / src / test / java / org / opendaylight / mdsal / binding / util / DatastoreTest.java
1 /*
2  * Copyright (c) 2018 Red Hat, 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.binding.util;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertThrows;
12
13 import org.junit.Test;
14 import org.opendaylight.mdsal.common.api.LogicalDatastoreType;
15
16 public class DatastoreTest {
17     @Test
18     public void testDatastoreToType() {
19         assertEquals(LogicalDatastoreType.CONFIGURATION, Datastore.CONFIGURATION.type());
20         assertEquals(LogicalDatastoreType.OPERATIONAL, Datastore.OPERATIONAL.type());
21     }
22
23     @Test
24     public void testDatastoreToClass() {
25         assertEquals(Datastore.CONFIGURATION, Datastore.ofType(LogicalDatastoreType.CONFIGURATION));
26         assertEquals(Datastore.OPERATIONAL, Datastore.ofType(LogicalDatastoreType.OPERATIONAL));
27         assertThrows(NullPointerException.class, () -> Datastore.ofType(null));
28     }
29 }