diff options
author | Michael Lando <ml636r@att.com> | 2017-08-07 10:19:02 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2017-08-07 10:19:02 +0000 |
commit | 976626d62ae4f55f9d9f0e96bc954102dd38e726 (patch) | |
tree | 881b58240dd6add92d01ac140f89c305fa0cda06 /catalog-model/src/test | |
parent | 3b1119ca51ea0de0ff28b76b916fa8b0cba54fcf (diff) | |
parent | b2c60183d5d654b945a24ec5564807e4f691c6e8 (diff) |
Merge "[SDC] code sync"
Diffstat (limited to 'catalog-model/src/test')
-rw-r--r-- | catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/converters/HeatStringConverterTest.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/converters/HeatStringConverterTest.java b/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/converters/HeatStringConverterTest.java new file mode 100644 index 0000000000..285dd9a965 --- /dev/null +++ b/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/converters/HeatStringConverterTest.java @@ -0,0 +1,16 @@ +package org.openecomp.sdc.be.model.tosca.converters; + +import org.junit.Test; + +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); + } + +} |