d45a3c44fe2db5ce0de557ceda15ad5b0e639e89
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / Bug2291Test.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.yang.stmt;
9
10 import static org.junit.Assert.assertNotNull;
11
12 import java.io.File;
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
15
16 public class Bug2291Test {
17
18     @Test
19     public void testRevisionWithExt() throws Exception {
20         File extdef = new File(getClass().getResource("/bugs/bug2291/bug2291-ext.yang").toURI());
21         File bug = new File(getClass().getResource("/bugs/bug2291/bug2291.yang").toURI());
22         File inet = new File(getClass().getResource("/ietf/ietf-inet-types@2010-09-24.yang").toURI());
23
24         SchemaContext context = TestUtils.parseYangSources(extdef, bug, inet);
25         assertNotNull(context);
26     }
27
28 }