Bug 6859 #2 Binding generator v1 refactoring
[mdsal.git] / binding / mdsal-binding-generator-impl / src / test / java / org / opendaylight / yangtools / sal / binding / generator / impl / CodecTypeUtilsTest.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 static org.junit.Assert.assertNotNull;
11 import static org.mockito.Mockito.mock;
12
13 import java.lang.reflect.Constructor;
14 import org.junit.Test;
15 import org.opendaylight.yangtools.yang.binding.Identifiable;
16 import org.opendaylight.yangtools.yang.binding.Identifier;
17
18 public class CodecTypeUtilsTest {
19
20     @Test
21     public void newIdentifiableItem() throws Exception {
22         assertNotNull(CodecTypeUtils.newIdentifiableItem(Identifiable.class, mock(Identifier.class)));
23     }
24
25     @Test(expected = UnsupportedOperationException.class)
26     public void privateConstructTest() throws Throwable {
27         final Constructor constructor = CodecTypeUtils.class.getDeclaredConstructor();
28         constructor.setAccessible(true);
29         try {
30             constructor.newInstance();
31         } catch (Exception e) {
32             throw e.getCause();
33         }
34     }
35 }