summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/converters/StringConvertorTest.java
blob: 0cfdba83d281e95652dc5b4f13e8fa8d35d7d122 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.sdc.be.model.tosca.converters;

import org.junit.Test;

public class StringConvertorTest {

	private StringConvertor createTestSubject() {
		return  StringConvertor.getInstance();
	}

	
	@Test
	public void testGetInstance() throws Exception {
		StringConvertor result;

		// default test
		result = StringConvertor.getInstance();
	}

	

}