summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/RepresentationUtilsTest.java
blob: c56fd474b4cd0c9c5f09827efc4bfc6078d4488c (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
45
46
47
48
package org.openecomp.sdc.be.servlets;

import javax.annotation.Generated;

import org.apache.tinkerpop.gremlin.structure.T;
import org.junit.Test;
import org.openecomp.sdc.be.model.ArtifactDefinition;

public class RepresentationUtilsTest {

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

	
	@Test
	public void testConvertJsonToArtifactDefinitionForUpdate() throws Exception {
		String content = "";
		Class<ArtifactDefinition> clazz = null;
		ArtifactDefinition result;

		// default test
		result = RepresentationUtils.convertJsonToArtifactDefinitionForUpdate(content, clazz);
	}

	
	@Test
	public void testToRepresentation() throws Exception {
		T elementToRepresent = null;
		Object result;

		// default test
		result = RepresentationUtils.toRepresentation(elementToRepresent);
	}

	

	
	@Test
	public void testConvertJsonToArtifactDefinition() throws Exception {
		String content = "";
		Class<ArtifactDefinition> clazz = null;
		ArtifactDefinition result;

		// default test
		result = RepresentationUtils.convertJsonToArtifactDefinition(content, clazz);
	}
}