Define a feature-parent
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / YT841Test.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies, s.r.o. 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.jupiter.api.Assertions.assertInstanceOf;
11
12 import org.junit.jupiter.api.Test;
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.opendaylight.yangtools.yang.model.api.stmt.InputEffectiveStatement;
15 import org.opendaylight.yangtools.yang.model.api.stmt.SchemaTreeEffectiveStatement;
16
17 class YT841Test extends AbstractYangTest {
18     private static final QName FOO = QName.create("foo", "2018-01-02", "foo");
19
20     @Test
21     void testFindDataSchemaNode() throws Exception {
22         final SchemaTreeEffectiveStatement<?> input = assertEffectiveModelDir("/bugs/YT841/")
23             .getModuleStatement(FOO)
24             .findSchemaTreeNode(FOO, FOO, FOO, QName.create(FOO, "input"))
25             .orElse(null);
26         assertInstanceOf(InputEffectiveStatement.class, input);
27     }
28 }