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

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