re base code
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / tosca / converters / HeatStringConverterTest.java
index 9f000a8..285dd9a 100644 (file)
@@ -1,32 +1,16 @@
 package org.openecomp.sdc.be.model.tosca.converters;
 
-import static org.junit.Assert.assertEquals;
-
 import org.junit.Test;
 
-public class HeatStringConverterTest {
-
-       @Test
-       public void convertString_strWithQuotes_returnStringAsIs() {
-               String str = "'i'm string with \"quote\"'";
-               String convert = HeatStringConverter.getInstance().convert(str, null, null);
-               assertEquals(str, convert);
-       }
-
-       private HeatStringConverter createTestSubject() {
-               return HeatStringConverter.getInstance();
-       }
-
-       
-       @Test
-       public void testGetInstance() throws Exception {
-               HeatStringConverter result;
-
-               // default test
-               result = HeatStringConverter.getInstance();
-       }
+import static org.junit.Assert.assertEquals;
 
-       
+public class HeatStringConverterTest {
 
+    @Test
+    public void convertString_strWithQuotes_returnStringAsIs()  {
+        String str = "'i'm string with \"quote\"'";
+        String convert = HeatStringConverter.getInstance().convert(str, null, null);
+        assertEquals(str, convert);
+    }
 
 }