summaryrefslogtreecommitdiffstats
path: root/catalog-be/src/test/java/org/openecomp/sdc/be/components/distribution/engine/AaiRequestHandlerTest.java
blob: 5c51bcc77e710ca5d72510a03af9704d9a610086 (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
package org.openecomp.sdc.be.components.distribution.engine;

import mockit.Deencapsulation;
import org.junit.Test;
import org.openecomp.sdc.be.components.BeConfDependentTest;

import java.util.Properties;

public class AaiRequestHandlerTest extends BeConfDependentTest {

	private AaiRequestHandler createTestSubject() {
		AaiRequestHandler testSubject = new AaiRequestHandler();
		testSubject.init();
		return testSubject;
	}

	@Test
	public void testInit() throws Exception {
		AaiRequestHandler testSubject;

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

	@Test
	public void testGetOperationalEnvById() throws Exception {
		AaiRequestHandler testSubject;
		String id = "";

		// default test
		testSubject = createTestSubject();
		testSubject.getOperationalEnvById(id);
	}

	@Test
	public void testRetryOnException() throws Exception {
		AaiRequestHandler testSubject;
		Exception e = null;
		boolean result;

		// default test
		testSubject = createTestSubject();
		result = Deencapsulation.invoke(testSubject, "retryOnException", new Object[] { Exception.class });
	}

	@Test
	public void testGetCause() throws Exception {
		AaiRequestHandler testSubject;
		Exception e = null;
		Throwable result;

		// default test
		testSubject = createTestSubject();
		result = Deencapsulation.invoke(testSubject, "getCause", new Object[] { Exception.class });
	}

	@Test
	public void testCreateHeaders() throws Exception {
		AaiRequestHandler testSubject;
		Properties result;

		// default test
		testSubject = createTestSubject();
		result = Deencapsulation.invoke(testSubject, "createHeaders");
	}
}