summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/jsongraph/types/VertexTypeEnumTest.java
blob: db5ab71bcab42212f9152b0a46c5d437908c3b62 (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
35
36
37
38
39
40
41
42
43
package org.openecomp.sdc.be.dao.jsongraph.types;

import org.junit.Test;


public class VertexTypeEnumTest {

	private VertexTypeEnum createTestSubject() {
		return VertexTypeEnum.ADDITIONAL_INFORMATION;
	}

	
	@Test
	public void testGetName() throws Exception {
		VertexTypeEnum testSubject;
		String result;

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

	
	@Test
	public void testGetClassOfJson() throws Exception {
		VertexTypeEnum testSubject;
		Class result;

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

	
	@Test
	public void testGetByName() throws Exception {
		String name = "";
		VertexTypeEnum result;

		// default test
		result = VertexTypeEnum.getByName(name);
	}
}