Fix yang-data extension definition
[yangtools.git] / parser / rfc8040-parser-support / src / test / java / org / opendaylight / yangtools / rfc8040 / parser / YT1443Test.java
1 /*
2  * Copyright (c) 2022 PANTHEON.tech, 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.rfc8040.parser;
9
10 import static org.junit.jupiter.api.Assertions.assertNotNull;
11
12 import org.junit.Test;
13 import org.opendaylight.yangtools.yang.common.QName;
14 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
15
16 public class YT1443Test extends AbstractYangDataTest {
17     @Test
18     public void buildEffectiveModelTest() throws ReactorException {
19         final var module = REACTOR.newBuild()
20             .addSources(IETF_RESTCONF_MODULE, sourceForResource("/yt1443.yang"))
21             .buildEffective()
22             .findModuleStatement(QName.create("yt1443", "yt1443"))
23             .orElseThrow();
24         assertNotNull(module);
25     }
26 }