aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-model/src/test/java/org/openecomp/sdc/be/model/jsontitan/enums/JsonConstantKeysEnumTest.java
blob: b00b13e162167a583047f85741e59bce70d5ad1f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package org.openecomp.sdc.be.model.jsontitan.enums;

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();
	}
}