Bump versions to 14.0.0-SNAPSHOT
[mdsal.git] / binding / mdsal-binding-generator / src / test / java / org / opendaylight / mdsal / binding / generator / impl / Bug6135Test.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 static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNotNull;
12
13 import java.util.List;
14 import org.junit.Test;
15 import org.opendaylight.mdsal.binding.model.api.Enumeration;
16 import org.opendaylight.mdsal.binding.model.api.GeneratedType;
17 import org.opendaylight.yangtools.yang.test.util.YangParserTestUtils;
18
19 public class Bug6135Test {
20     @Test
21     public void bug6135Test() {
22         final List<GeneratedType> generateTypes = DefaultBindingGenerator.generateFor(
23             YangParserTestUtils.parseYangResource("/bug6135.yang"));
24         assertEquals(5, generateTypes.size());
25
26         GeneratedType genInterface = null;
27         for (final GeneratedType type : generateTypes) {
28             if (type.getName().equals("TestLeafrefData")) {
29                 genInterface = type;
30                 break;
31             }
32         }
33         assertNotNull(genInterface);
34         final List<Enumeration> enums = genInterface.getEnumerations();
35         assertEquals(2, enums.size());
36     }
37 }