X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=yang%2Fyang-parser-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fimpl%2FBug3859Test.java;fp=yang%2Fyang-parser-impl%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fyangtools%2Fyang%2Fparser%2Fimpl%2FBug3859Test.java;h=0000000000000000000000000000000000000000;hb=c3ff09884178e03dc325b75b0944fd8239319058;hp=a67ffb49817935a7ae66861f32715df0b297aacc;hpb=abced3230f02588c577c17c0cc039c5707c85081;p=yangtools.git diff --git a/yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/parser/impl/Bug3859Test.java b/yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/parser/impl/Bug3859Test.java deleted file mode 100644 index a67ffb4981..0000000000 --- a/yang/yang-parser-impl/src/test/java/org/opendaylight/yangtools/yang/parser/impl/Bug3859Test.java +++ /dev/null @@ -1,25 +0,0 @@ -/* - * Copyright (c) 2015 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.yangtools.yang.parser.impl; - -import static org.junit.Assert.assertNotNull; - -import java.util.Set; -import org.junit.Test; -import org.opendaylight.yangtools.yang.model.api.Module; - -public class Bug3859Test { - - @Test - public void test() throws Exception { - Set modules = TestUtils.loadModules(getClass().getResource("/bugs/bug3859").toURI()); - Module bug3859 = TestUtils.findModule(modules, "reference-in-unknown"); - assertNotNull(bug3859); - } - -}