Bug 3859: Use of reference keyword in a YANG extension
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / impl / Bug3859Test.java
1 /*
2  * Copyright (c) 2015 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.yang.parser.impl;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import java.util.Set;
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.model.api.Module;
15
16 public class Bug3859Test {
17
18     @Test
19     public void test() throws Exception {
20         Set<Module> modules = TestUtils.loadModules(getClass().getResource("/bugs/bug3859").toURI());
21         Module bug3859 = TestUtils.findModule(modules, "reference-in-unknown");
22         assertNotNull(bug3859);
23     }
24
25 }