Bug 8151 - AuxiliaryGenUtils - Increase test coverage
[mdsal.git] / binding2 / mdsal-binding2-generator-impl / src / test / resources / base / test-rpc-and-notification.yang
1 module test-rpc-and-notification-module {
2   yang-version 1;
3   namespace "urn:base:test-rpc-and-notification";
4   prefix base-test-rpc-and-notification;
5   organization "yang-test-rpc-and-notification";
6   revision "2017-04-06";
7
8   rpc my-rpc {
9     input {
10       leaf in {
11         type string;
12       }
13     }
14
15     output {
16       leaf out {
17         type string;
18       }
19     }
20   }
21
22   notification my-notification {
23   }
24
25 }