summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/types/EdgeLabelEnumTest.java
blob: 6b50f6e80627dfa783ea37e8ce23afa628cffa71 (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 EdgeLabelEnumTest {

	private EdgeLabelEnum createTestSubject() {
		return EdgeLabelEnum.ARTIFACTS;
	}

	
	@Test
	public void testGetEdgeLabelEnum() throws Exception {
		String name = "";
		EdgeLabelEnum result;

		// default test
		result = EdgeLabelEnum.getEdgeLabelEnum(name);
	}

	
	@Test
	public void testIsInstanceArtifactsLabel() throws Exception {
		EdgeLabelEnum testSubject;
		boolean result;

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