Replace old yang parser usages in restconf
[netconf.git] / restconf / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / cnsn / to / json / test / CnSnToJsonIdentityrefTest.java
index d13b7b3eafc5b09843ffc5edce361b8539300626..bf262d78f53ba9ffeace65ed220d52b9a0a7cc04 100644 (file)
@@ -7,13 +7,15 @@
  */
 package org.opendaylight.controller.sal.restconf.impl.cnsn.to.json.test;
 
+import java.io.FileNotFoundException;
 import org.junit.BeforeClass;
 import org.opendaylight.controller.sal.restconf.impl.test.YangAndXmlAndDataSchemaLoader;
+import org.opendaylight.yangtools.yang.parser.spi.meta.ReactorException;
 
 public class CnSnToJsonIdentityrefTest extends YangAndXmlAndDataSchemaLoader {
 
     @BeforeClass
-    public static void initialization() {
+    public static void initialization() throws FileNotFoundException, ReactorException {
         dataLoad("/cnsn-to-json/identityref", 2, "identityref-module", "cont");
     }