[ONOS-7064] Yang Runtime support for Anydata code base

Change-Id: I6e3cde428e730b553b9b73700519bc749760148d
diff --git a/runtime/src/test/resources/schemaProviderTestYangFiles/anyTest.yang b/runtime/src/test/resources/schemaProviderTestYangFiles/anyTest.yang
new file mode 100644
index 0000000..d125541
--- /dev/null
+++ b/runtime/src/test/resources/schemaProviderTestYangFiles/anyTest.yang
@@ -0,0 +1,24 @@
+module anyTest {
+
+    yang-version 1.1;
+
+    namespace "yrt:list.test.anydata";
+
+    prefix "l";
+
+    organization "ON-LAB";
+
+    description "This module defines for list.";
+
+    revision "2016-06-24" {
+        description "Initial revision.";
+    }
+
+    anydata mydata {
+
+    }
+    container c1 {
+        anydata mydata2 {
+        }
+    }
+}
\ No newline at end of file