Refactored SchemaPath for yang java types. Fixed SchemaPath for augmented nodes types.
[controller.git] / opendaylight / sal / yang-prototype / code-generator / yang-model-parser-impl / src / test / java / org / opendaylight / controller / yang / parser / impl / TypesResolutionTest.java
index 8435ff683a08c32cef4656962cdc19347a16cea4..36c98c36e2a3928cded65ecdbad0ec11b850f2a4 100644 (file)
@@ -9,6 +9,7 @@ package org.opendaylight.controller.yang.parser.impl;
 
 import static org.junit.Assert.*;
 
+import java.io.FileNotFoundException;
 import java.net.URI;
 import java.util.List;
 import java.util.Set;
@@ -37,7 +38,7 @@ public class TypesResolutionTest {
     private Set<Module> testedModules;
 
     @Before
-    public void init() {
+    public void init() throws FileNotFoundException {
         testedModules = TestUtils.loadModules("src/test/resources/types");
     }