aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/jsontitan/datamodel/ToscaElementTypeEnumTest.java
blob: 918b0328a9a56d3d3eacc30ba1adc1c290eca0d5 (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
package org.openecomp.sdc.be.model.jsontitan.datamodel;

import org.junit.Test;


public class ToscaElementTypeEnumTest {

	private ToscaElementTypeEnum createTestSubject() {
		return  ToscaElementTypeEnum.TOPOLOGY_TEMPLATE;
	}

	


	
	@Test
	public void testGetValue() throws Exception {
		ToscaElementTypeEnum testSubject;
		String result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getValue();
	}
}