aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java')
-rw-r--r--sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java31
1 files changed, 0 insertions, 31 deletions
diff --git a/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java b/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java
deleted file mode 100644
index 8c96303..0000000
--- a/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserConfigurationTest.java
+++ /dev/null
@@ -1,31 +0,0 @@
-package org.openecomp.sdc.impl;
-
-import org.openecomp.sdc.tosca.parser.config.ErrorConfiguration;
-import org.testng.annotations.Test;
-import org.openecomp.sdc.tosca.parser.config.Configuration;
-import org.openecomp.sdc.tosca.parser.config.ConfigurationManager;
-
-import java.io.IOException;
-
-import static org.testng.Assert.assertNotNull;
-
-public class ToscaParserConfigurationTest extends SdcToscaParserBasicTest {
-
- @Test
- public void testConfigurationConformanceLevel() throws IOException {
- Configuration config = ConfigurationManager.getInstance().getConfiguration();
- assertNotNull(config);
- assertNotNull(config.getConformanceLevel());
- assertNotNull(config.getConformanceLevel().getMaxVersion());
- assertNotNull(config.getConformanceLevel().getMinVersion());
- }
-
-
- @Test
- public void testErrorConfigurations() throws IOException {
- ErrorConfiguration errorConfig = ConfigurationManager.getInstance().getErrorConfiguration();
- assertNotNull(errorConfig);
- assertNotNull(errorConfig.getErrors());
- }
-
-}