aboutsummaryrefslogtreecommitdiffstats
path: root/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java')
-rw-r--r--sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java23
1 files changed, 0 insertions, 23 deletions
diff --git a/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java b/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java
deleted file mode 100644
index 9f349ae..0000000
--- a/sdc-tosca-parser/src/test/java/org/openecomp/sdc/impl/ToscaParserGeneralUtilTest.java
+++ /dev/null
@@ -1,23 +0,0 @@
-package org.openecomp.sdc.impl;
-
-import org.testng.annotations.Test;
-import org.openecomp.sdc.tosca.parser.utils.GeneralUtility;
-
-import static org.testng.Assert.assertTrue;
-
-public class ToscaParserGeneralUtilTest extends SdcToscaParserBasicTest {
-
- @Test
- public void testVersionCompare() {
- assertTrue(GeneralUtility.conformanceLevelCompare("2", "3.0") < 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("0.5", "0.5") == 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("0.5", "0.6") < 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("1.5", "2.6") < 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("0.2", "0.1") > 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("2", "1.15") > 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("2", "2.0.0") == 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("2.0", "2.0.0.0") == 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("2.", "2.0.0.0") == 0);
- assertTrue(GeneralUtility.conformanceLevelCompare("2.0", "2.0.0.2") < 0);
- }
-}