summaryrefslogtreecommitdiffstats
path: root/common-be/src/test/java/org/openecomp/sdc/be/datatypes/enums/GroupTypeEnumTest.java
blob: c5502a1be94e3c797c3d1d15ae5b39e9dcac3899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.openecomp.sdc.be.datatypes.enums;

import org.junit.Test;

public class GroupTypeEnumTest {

	private GroupTypeEnum createTestSubject() {
		return GroupTypeEnum.HEAT_STACK;
	}

	@Test
	public void testGetGroupTypeName() throws Exception {
		GroupTypeEnum testSubject;
		String result;

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