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