AnyData feature changes

Change-Id: Iccba22d731321f38b8146bbfc85477d2252a3b10
diff --git a/runtime/src/test/resources/schemaProviderTestYangFiles/listAnydata.yang b/runtime/src/test/resources/schemaProviderTestYangFiles/listAnydata.yang
new file mode 100644
index 0000000..19f43d9
--- /dev/null
+++ b/runtime/src/test/resources/schemaProviderTestYangFiles/listAnydata.yang
@@ -0,0 +1,53 @@
+module listAnydata {
+
+    yang-version 1.1;
+
+    namespace "yrt:list.anydata";
+
+    prefix "l";
+
+    organization "ON-LAB";
+
+    description "This module defines for list.";
+
+    revision "2016-06-24" {
+        description "Initial revision.";
+    }
+
+    anydata mydata {
+
+    }
+
+    list l1 {
+        key "k1 k2 k3";
+            leaf k1 {
+               type string;
+            }
+
+            leaf k2 {
+              type string;
+            }
+
+            leaf k3 {
+              type string;
+            }
+
+            container c1 {
+                leaf leaf_c1 {
+                  type string;
+                }
+            }
+            anydata mydata {
+
+            }
+    }
+
+    leaf-list leaf1 {
+        type string;
+    }
+
+    augment "/l:l1/l:c1/" {
+        anydata mydata {
+        }
+    }
+}
\ No newline at end of file