Add NETCONF/RFC7952 compatibility
[yangtools.git] / yang / rfc7952-model-netconf / src / test / java / org / opendaylight / yangtools / rfc7952 / model / netconf / OperationTest.java
diff --git a/yang/rfc7952-model-netconf/src/test/java/org/opendaylight/yangtools/rfc7952/model/netconf/OperationTest.java b/yang/rfc7952-model-netconf/src/test/java/org/opendaylight/yangtools/rfc7952/model/netconf/OperationTest.java
new file mode 100644 (file)
index 0000000..dde3ded
--- /dev/null
@@ -0,0 +1,20 @@
+/*
+ * Copyright (c) 2019 Pantheon Technologies, s.r.o. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
+package org.opendaylight.yangtools.rfc7952.model.netconf;
+
+import static org.junit.Assert.assertNotNull;
+
+import org.junit.Test;
+
+public class OperationTest {
+    @Test
+    public void testAnnotation() {
+        assertNotNull(Operation.getSchemaNode());
+        assertNotNull(Operation.getEffectiveStatement());
+    }
+}