summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/tosca/converters/ListConverterTest.java
blob: 7002f813c1e74397ea4ef644acfcff79861b6df9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
package org.openecomp.sdc.be.model.tosca.converters;

import org.junit.Test;


public class ListConverterTest {

	private ListConverter createTestSubject() {
		return new ListConverter();
	}

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

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

	

	
	

	

}