Bug 6859 #3 Binding generator v1 refactoring
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / mdsal / binding / generator / impl / YangTextTemplateTest.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.generator.impl;
9
10 import java.lang.reflect.Constructor;
11 import org.junit.Test;
12 import org.opendaylight.mdsal.binding.generator.impl.YangTextTemplate;
13
14 public class YangTextTemplateTest {
15
16     @Test(expected = UnsupportedOperationException.class)
17     public void privateConstructTest() throws Throwable {
18         final Constructor constructor = YangTextTemplate.class.getDeclaredConstructor();
19         constructor.setAccessible(true);
20         try {
21             constructor.newInstance();
22         } catch (Exception e) {
23             throw e.getCause();
24         }
25     }
26 }