summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/utils/MapEntryTest.java
blob: bb6afc41530146b6da4554bda7c3bff408700baf (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
44
package org.openecomp.sdc.be.dao.utils;

import javax.annotation.Generated;

import org.apache.tinkerpop.gremlin.structure.T;
import org.elasticsearch.common.recycler.Recycler.V;
import org.junit.Test;


public class MapEntryTest {

	private MapEntry createTestSubject() {
		return new MapEntry();
	}

	



	
	@Test
	public void testSetKey() throws Exception {
		MapEntry testSubject;
		T key = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setKey(key);
	}

	


	
	@Test
	public void testSetValue() throws Exception {
		MapEntry testSubject;
		V value = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setValue(value);
	}
}