Bug 1131 - yang-parser-impl cleanup
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / parser / impl / TwoRevisionsTest.java
1 /*
2  * Copyright (c) 2014 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.assertEquals;
11
12 import java.util.Set;
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.model.api.Module;
15 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
16 import org.opendaylight.yangtools.yang.model.parser.api.YangModelParser;
17
18 public class TwoRevisionsTest {
19
20     @Test
21     public void testTwoRevisions() throws Exception {
22         YangModelParser parser = new YangParserImpl();
23
24         Set<Module> modules = TestUtils.loadModules(getClass().getResource("/ietf").toURI());
25         assertEquals(2, TestUtils.findModules(modules, "network-topology").size());
26
27         SchemaContext schemaContext = parser.resolveSchemaContext(modules);
28         assertEquals(2, TestUtils.findModules(schemaContext.getModules(), "network-topology").size());
29
30     }
31
32 }