Use local variable type inference
[yangtools.git] / parser / yang-parser-rfc7950 / src / test / java / org / opendaylight / yangtools / yang / stmt / yin / AbstractYinModulesTest.java
1 /*
2  * Copyright (c) 2019 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.yang.stmt.yin;
9
10 import static org.junit.Assert.assertEquals;
11
12 import java.io.IOException;
13 import java.net.URISyntaxException;
14 import org.junit.AfterClass;
15 import org.junit.BeforeClass;
16 import org.opendaylight.yangtools.yang.model.api.SchemaContext;
17 import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
18 import org.opendaylight.yangtools.yang.stmt.TestUtils;
19 import org.xml.sax.SAXException;
20
21 public abstract class AbstractYinModulesTest {
22
23     static SchemaContext context;
24
25     @BeforeClass
26     public static void beforeClass() throws ReactorException, SAXException, IOException, URISyntaxException {
27         context = TestUtils.loadYinModules(
28             AbstractYinModulesTest.class.getResource("/semantic-statement-parser/yin/modules").toURI());
29         assertEquals(9, context.getModules().size());
30     }
31
32     @AfterClass
33     public static void afterClass() {
34         context = null;
35     }
36 }