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

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();
	}
}