aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/CambriaErrorResponseTest.java
blob: 7f78093ebdefb4de2b8f910b3a6ec152844eb78a (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package org.openecomp.sdc.be.components.distribution.engine;

import org.junit.Test;
import org.openecomp.sdc.be.distribution.api.client.CambriaOperationStatus;

import java.util.List;

public class CambriaErrorResponseTest {

	private CambriaErrorResponse createTestSubject() {
		return new CambriaErrorResponse();
	}
	
	@Test
	public void testConstructors() throws Exception {
		CambriaErrorResponse testSubject;
		CambriaOperationStatus result;

		// default test
		new CambriaErrorResponse(CambriaOperationStatus.AUTHENTICATION_ERROR);
		new CambriaErrorResponse(CambriaOperationStatus.CONNNECTION_ERROR, 500);
	}
	
	@Test
	public void testGetOperationStatus() throws Exception {
		CambriaErrorResponse testSubject;
		CambriaOperationStatus result;

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

	@Test
	public void testSetOperationStatus() throws Exception {
		CambriaErrorResponse testSubject;
		CambriaOperationStatus operationStatus = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setOperationStatus(operationStatus);
	}

	@Test
	public void testGetHttpCode() throws Exception {
		CambriaErrorResponse testSubject;
		Integer result;

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

	@Test
	public void testSetHttpCode() throws Exception {
		CambriaErrorResponse testSubject;
		Integer httpCode = 0;

		// default test
		testSubject = createTestSubject();
		testSubject.setHttpCode(httpCode);
	}

	@Test
	public void testAddVariable() throws Exception {
		CambriaErrorResponse testSubject;
		String variable = "";

		// default test
		testSubject = createTestSubject();
		testSubject.addVariable(variable);
	}

	@Test
	public void testGetVariables() throws Exception {
		CambriaErrorResponse testSubject;
		List<String> result;

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

	@Test
	public void testSetVariables() throws Exception {
		CambriaErrorResponse testSubject;
		List<String> variables = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setVariables(variables);
	}

	@Test
	public void testToString() throws Exception {
		CambriaErrorResponse testSubject;
		String result;

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