Adjust to yangtools-2.0.0 changes
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / java / org / opendaylight / mdsal / binding / java / api / generator / ConstantsTest.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.binding.java.api.generator;
9
10
11 import static org.junit.Assert.assertFalse;
12 import static org.junit.Assert.assertNotNull;
13
14 import java.lang.reflect.Constructor;
15 import org.junit.Test;
16
17 public class ConstantsTest {
18
19     @Test
20     public void constructTest() throws Throwable {
21         final Constructor<?> constructor = Constants.class.getDeclaredConstructor();
22         assertFalse(constructor.isAccessible());
23         constructor.setAccessible(true);
24         assertNotNull(constructor.newInstance());
25     }
26 }