Bug 6859 #4 Binding generator v1 refactoring
[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 import org.opendaylight.mdsal.binding.java.api.generator.Constants;
17
18 public class ConstantsTest {
19
20     @Test
21     public void constructTest() throws Throwable {
22         final Constructor constructor = Constants.class.getDeclaredConstructor();
23         assertFalse(constructor.isAccessible());
24         constructor.setAccessible(true);
25         assertNotNull(constructor.newInstance());
26     }
27 }