Refactoring Consolidation Service
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / tosca / converters / StringConvertorTest.java
1 package org.openecomp.sdc.be.model.tosca.converters;
2
3 import org.junit.Test;
4
5 public class StringConvertorTest {
6
7         private StringConvertor createTestSubject() {
8                 return  StringConvertor.getInstance();
9         }
10
11         
12         @Test
13         public void testGetInstance() throws Exception {
14                 StringConvertor result;
15
16                 // default test
17                 result = StringConvertor.getInstance();
18         }
19
20         
21
22 }