summaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/jsontitan/enums/JsonConstantKeysEnumTest.java
blob: 11faa42b79753dbb15f66dab630af1f79b1bf7bd (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
package org.openecomp.sdc.be.model.jsontitan.enums;

import javax.annotation.Generated;

import org.junit.Test;


public class JsonConstantKeysEnumTest {

	private JsonConstantKeysEnum createTestSubject() {
		return  JsonConstantKeysEnum.COMPOSITION;
	}

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

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