YMS migration to onos-yangtool 1.10

Change-Id: I22ddf23f813840e0afec1e7713a86891f2a52f28
diff --git a/apps/yms/ut/src/test/resources/ydtTestYangFiles/augmentNetwork.yang b/apps/yms/ut/src/test/resources/ydtTestYangFiles/augmentNetwork.yang
new file mode 100644
index 0000000..a769a5e
--- /dev/null
+++ b/apps/yms/ut/src/test/resources/ydtTestYangFiles/augmentNetwork.yang
@@ -0,0 +1,36 @@
+module augmentNetwork {
+
+    yang-version 1;
+
+    namespace "ydt.augmentNetwork";
+
+    prefix "aug";
+
+    organization "ON-LAB";
+
+    description "This module defines for augmentNetwork classifier.";
+
+    revision "2016-05-24" {
+        description "Initial revision.";
+    }
+
+    list node {
+        key "name";
+        leaf name {
+            type string;
+            description "name of node";
+        }
+    }
+
+    augment "/node" {
+        description
+        "Add container to the node model.";
+        container cont1s {
+            container cont1s {
+                leaf fine {
+                    type string;
+                }
+            }
+        }
+    }
+}
\ No newline at end of file