yang Notification Listener

Change-Id: I1073be0342bee083495e2c103bad8351f492441c
diff --git a/utils/yangutils/src/test/resources/ValidNotificationStatement.yang b/utils/yangutils/src/test/resources/ValidNotificationStatement.yang
new file mode 100644
index 0000000..b96fc54
--- /dev/null
+++ b/utils/yangutils/src/test/resources/ValidNotificationStatement.yang
@@ -0,0 +1,25 @@
+module rock {
+    namespace "http://example.net/rock";
+    prefix "rock";
+
+    notification link-failure {
+        description "A link failure has been detected";
+        status deprecated;
+        reference "reference";
+        typedef my-type {
+           status deprecated;
+           type int32;
+        }
+        leaf if-name {
+           type leafref {
+               path "/interface/name";
+           }
+        }
+        leaf if-admin-status {
+           type admin-status;
+        }
+        leaf if-oper-status {
+           type oper-status;
+        }
+    }
+}