Merge branch 'blueprint' from controller
[mdsal.git] / binding / mdsal-binding-java-api-generator / src / test / java / org / opendaylight / mdsal / binding / java / api / generator / LengthGeneratorTest.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 import java.lang.reflect.Constructor;
11 import org.junit.Test;
12
13 public class LengthGeneratorTest {
14
15     @Test(expected = UnsupportedOperationException.class)
16     public void constructTest() throws Throwable {
17         final Constructor<LengthGenerator> constructor = LengthGenerator.class.getDeclaredConstructor();
18         constructor.setAccessible(true);
19         try {
20             constructor.newInstance();
21         } catch (Exception e) {
22             throw e.getCause();
23         }
24     }
25 }