summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/types/EdgePropertyEnumTest.java
blob: 544a9ce38b7bb9ff9d129e43bec049e910d5899c (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
package org.openecomp.sdc.be.dao.jsongraph.types;

import javax.annotation.Generated;

import org.junit.Test;


public class EdgePropertyEnumTest {

	private EdgePropertyEnum createTestSubject() {
		return EdgePropertyEnum.STATE;
	}

	
	@Test
	public void testGetProperty() throws Exception {
		EdgePropertyEnum testSubject;
		String result;

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

	
	@Test
	public void testGetByProperty() throws Exception {
		String property = "";
		EdgePropertyEnum result;

		// default test
		result = EdgePropertyEnum.getByProperty(property);
	}
}