summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/servlets/GroupServletTest.java
blob: 85b835076b82f4c5ffb5cba9c53d97ac9f8375d4 (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.servlets;

import javax.annotation.Generated;
import javax.servlet.http.HttpServletRequest;
import javax.ws.rs.core.Response;

import org.junit.Test;

public class GroupServletTest {

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

	
	@Test
	public void testGetGroupArtifactById() throws Exception {
		GroupServlet testSubject;
		String containerComponentType = "";
		String componentId = "";
		String groupId = "";
		HttpServletRequest request = null;
		String userId = "";
		Response result;

		// default test
	}

	
	@Test
	public void testUpdateGroupMetadata() throws Exception {
		GroupServlet testSubject;
		String containerComponentType = "";
		String componentId = "";
		String groupUniqueId = "";
		String data = "";
		HttpServletRequest request = null;
		String userId = "";
		Response result;

		// default test
		testSubject = createTestSubject();
	}
}