Fix anyData content normalization incl no data case
[yangtools.git] / codec / yang-data-codec-xml / src / test / resources / test-anydata.yang
index 0655955be45c9359f6922bc2327619f8b21c256e..a125e8b16f0c1d3cc5b30219e3934b437a320f6f 100644 (file)
@@ -11,6 +11,22 @@ module test-anydata {
         leaf cont-leaf {
             type string;
         }
+        leaf empty-leaf {
+            type empty;
+        }
+        container bar {
+            leaf cont-leaf {
+                type string;
+            }
+        }
+    }
+    list lst {
+        leaf cont-leaf {
+            type string;
+        }
+        leaf-list my-leafs {
+            type string;
+        }
     }
 }