summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/LifeCycleTransitionEnumTest.java
blob: 43fac12509bfac16344240ab38a4879a55625e54 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package org.openecomp.sdc.be.model;

import javax.annotation.Generated;

import org.junit.Test;

public class LifeCycleTransitionEnumTest {

	private LifeCycleTransitionEnum createTestSubject() {
		return LifeCycleTransitionEnum.CERTIFY;
	}

	
	@Test
	public void testGetDisplayName() throws Exception {
		LifeCycleTransitionEnum testSubject;
		String result;

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

	
	@Test
	public void testGetFromDisplayName() throws Exception {
		String name = LifeCycleTransitionEnum.CHECKIN.getDisplayName() ;
		LifeCycleTransitionEnum result;

		// default test
		result = LifeCycleTransitionEnum.getFromDisplayName(name);
	}

	
	@Test
	public void testValuesAsString() throws Exception {
		String result;

		// default test
		result = LifeCycleTransitionEnum.valuesAsString();
	}
}