summaryrefslogtreecommitdiffstats
path: root/catalog-fe/src/test/java/org/openecomp/sdc/fe/listen/MyObjectMapperProviderTest.java
blob: c77206fb0352c6701ca40d2ce4865d8a341f5279 (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
package org.openecomp.sdc.fe.listen;

import org.junit.Test;

import com.fasterxml.jackson.databind.ObjectMapper;


public class MyObjectMapperProviderTest {

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

	
	@Test
	public void testGetContext() throws Exception {
		MyObjectMapperProvider testSubject;
		Class<?> type = null;
		ObjectMapper result;

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

	

}