Remove binding spec2
[mdsal.git] / binding2 / mdsal-binding2-java-api-generator / src / test / resources / test / test-operation-service.yang
diff --git a/binding2/mdsal-binding2-java-api-generator/src/test/resources/test/test-operation-service.yang b/binding2/mdsal-binding2-java-api-generator/src/test/resources/test/test-operation-service.yang
deleted file mode 100644 (file)
index 49a03ca..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-module test-operation-service {
-    yang-version 1.1;
-    namespace "urn:test:operation";
-    prefix "operation";
-
-    revision "2017-06-21" {
-        description
-            "Initial revision";
-    }
-
-    container my-cont {
-        action in-cont {
-            input {
-                leaf input-leaf {
-                    type string;
-                }
-            }
-
-            output {
-                leaf output-leaf {
-                    type string;
-                }
-            }
-        }
-
-        action in-cont2 {
-                    input {
-                        leaf input-leaf {
-                            type string;
-                        }
-                    }
-
-                    output {
-                        leaf output-leaf {
-                            type string;
-                        }
-                    }
-                }
-    }
-
-    list my-list {
-        key "name";
-
-        leaf name {
-            type string;
-        }
-
-        action in-list {
-            input {
-                leaf input-list-leaf {
-                    type string;
-                }
-            }
-
-            output {
-                leaf output-list-leaf {
-                    type string;
-                }
-            }
-        }
-    }
-
-    rpc my-rpc {
-        input {
-            leaf rpc-input-leaf {
-                type string;
-            }
-        }
-
-        output {
-            leaf rpc-output-leaf {
-                type string;
-            }
-        }
-    }
-}