Populate parser/ hierarchy
[yangtools.git] / yang / yang-parser-spi / src / test / java / org / opendaylight / yangtools / yang / parser / spi / source / NamespaceTest.java
diff --git a/yang/yang-parser-spi/src/test/java/org/opendaylight/yangtools/yang/parser/spi/source/NamespaceTest.java b/yang/yang-parser-spi/src/test/java/org/opendaylight/yangtools/yang/parser/spi/source/NamespaceTest.java
deleted file mode 100644 (file)
index 7b9a540..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * Copyright (c) 2017 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.yang.parser.spi.source;
-
-import static org.junit.Assert.assertNotNull;
-
-import org.junit.Test;
-
-public class NamespaceTest {
-    @Test
-    public void testNamespaces() {
-        // Touch behaviors
-        // FIXME: add more checks/split this up when behaviours are testable
-        assertNotNull(BelongsToModuleContext.BEHAVIOUR);
-        assertNotNull(BelongsToPrefixToModuleCtx.BEHAVIOUR);
-        assertNotNull(BelongsToPrefixToModuleName.BEHAVIOUR);
-        assertNotNull(ImpPrefixToNamespace.BEHAVIOUR);
-        assertNotNull(ImportedModuleContext.BEHAVIOUR);
-        assertNotNull(ImportPrefixToModuleCtx.BEHAVIOUR);
-        assertNotNull(ImportPrefixToSemVerSourceIdentifier.BEHAVIOUR);
-        assertNotNull(IncludedSubmoduleNameToModuleCtx.BEHAVIOUR);
-        assertNotNull(IncludedModuleContext.BEHAVIOUR);
-        assertNotNull(ModuleCtxToModuleQName.BEHAVIOUR);
-        assertNotNull(ModuleNameToNamespace.BEHAVIOUR);
-        assertNotNull(ModuleQNameToModuleName.BEHAVIOUR);
-        assertNotNull(ModuleCtxToSourceIdentifier.BEHAVIOUR);
-        assertNotNull(ModuleNamespaceForBelongsTo.BEHAVIOUR);
-        assertNotNull(ModuleNameToModuleQName.BEHAVIOUR);
-        assertNotNull(ModulesDeviatedByModules.BEHAVIOUR);
-        assertNotNull(PrefixToModule.BEHAVIOUR);
-        assertNotNull(SupportedFeaturesNamespace.BEHAVIOUR);
-    }
-}