Remove deprecated Yin/YangStatementSourceImpl
[yangtools.git] / yang / yang-parser-impl / src / test / java / org / opendaylight / yangtools / yang / stmt / TwoRevisionsTest.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.assertEquals;
11
12 import java.util.Set;
13 import org.junit.Test;
14 import org.opendaylight.yangtools.yang.model.api.Module;
15
16 public class TwoRevisionsTest {
17
18     @Test
19     public void testTwoRevisions() throws Exception {
20         Set<Module> modules = TestUtils.loadModules(getClass().getResource("/ietf").toURI()).getModules();
21         //FIXME: following assert needs module revisions .equals() solution first
22         assertEquals(2, TestUtils.findModules(modules, "network-topology").size());
23     }
24
25 }