YMS migration to onos-yangtool 1.10

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