285dd9a965a7613f9b16dd7630119e957a8e1b07
[sdc.git] /
1 package org.openecomp.sdc.be.model.tosca.converters;
2
3 import org.junit.Test;
4
5 import static org.junit.Assert.assertEquals;
6
7 public class HeatStringConverterTest {
8
9     @Test
10     public void convertString_strWithQuotes_returnStringAsIs()  {
11         String str = "'i'm string with \"quote\"'";
12         String convert = HeatStringConverter.getInstance().convert(str, null, null);
13         assertEquals(str, convert);
14     }
15
16 }