YMS migration to onos-yangtool 1.10

Change-Id: I22ddf23f813840e0afec1e7713a86891f2a52f28
diff --git a/apps/yms/ut/src/test/resources/ydtTestYangFiles/EmptyLeafList.yang b/apps/yms/ut/src/test/resources/ydtTestYangFiles/EmptyLeafList.yang
new file mode 100644
index 0000000..b6174c7
--- /dev/null
+++ b/apps/yms/ut/src/test/resources/ydtTestYangFiles/EmptyLeafList.yang
@@ -0,0 +1,51 @@
+module EmptyLeafList {
+
+    yang-version 1;
+
+    namespace "ydt.Empty.leafList";
+
+    prefix "emptyleaflist";
+
+    organization "ON-LAB";
+
+    description "This module defines for empty leaf list.";
+
+    revision "2016-05-24" {
+        description "Initial revision.";
+    }
+
+    typedef type-def {
+        type leafref {
+                    path /l1;
+                }
+    }
+
+    leaf l1 {
+        type empty;
+    }
+
+    leaf l2 {
+        type leafref {
+            path /l1;
+        }
+    }
+
+    leaf l3 {
+        type type-def;
+    }
+
+    leaf-list list1 {
+        type empty;
+    }
+
+    leaf-list list2 {
+        type leafref {
+            path /l1;
+        }
+    }
+
+    leaf-list list3 {
+        type type-def;
+    }
+
+}
\ No newline at end of file