Implementation of SchemaContextProvider interface

Change-Id: Id3a6b53aecbb1982c0fbef076cca1f2b119c9d0d
diff --git a/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang b/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang
new file mode 100644
index 0000000..c1968a3
--- /dev/null
+++ b/runtime/src/test/resources/schemaProviderTestYangFiles/rpc_test.yang
@@ -0,0 +1,23 @@
+module hello {
+    yang-version 1;
+    namespace "urn:params:xml:ns:yang:hello";
+    prefix "hello";
+
+    revision "2015-01-05" {
+        description "Initial revision of hello model";
+    }
+
+    rpc hello-world {
+        input {
+            leaf x {
+                type string;
+            }
+        }
+
+        output {
+            leaf greeting {
+                type string;
+            }
+        }
+    }
+}
\ No newline at end of file