Delete restconf
[controller.git] / opendaylight / md-sal / sal-rest-connector / src / test / java / org / opendaylight / controller / sal / restconf / impl / test / XmlAndJsonToCnSnLeafRefTest.java
diff --git a/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/XmlAndJsonToCnSnLeafRefTest.java b/opendaylight/md-sal/sal-rest-connector/src/test/java/org/opendaylight/controller/sal/restconf/impl/test/XmlAndJsonToCnSnLeafRefTest.java
deleted file mode 100644 (file)
index e2e19c2..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-/*
- * Copyright (c) 2014 Cisco Systems, Inc. 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.controller.sal.restconf.impl.test;
-
-import org.junit.BeforeClass;
-import org.opendaylight.yangtools.yang.common.QName;
-
-public class XmlAndJsonToCnSnLeafRefTest extends YangAndXmlAndDataSchemaLoader {
-
-    final QName refContQName = QName.create("referenced:module", "2014-04-17", "cont");
-    final QName refLf1QName = QName.create(refContQName, "lf1");
-    final QName contQName = QName.create("leafref:module", "2014-04-17", "cont");
-    final QName lf1QName = QName.create(contQName, "lf1");
-    final QName lf2QName = QName.create(contQName, "lf2");
-    final QName lf3QName = QName.create(contQName, "lf3");
-
-    @BeforeClass
-    public static void initialize() {
-        dataLoad("/leafref/yang", 2, "leafref-module", "cont");
-    }
-
-
-}