36f5c032263306adb8e11e62a66864c6fef22649
[sdc.git] /
1 package org.openecomp.sdc.be.components.distribution.engine;
2
3 import org.junit.Test;
4 import org.openecomp.sdc.be.components.BeConfDependentTest;
5
6 public class UebHealthCheckCallTest extends BeConfDependentTest {
7
8         private UebHealthCheckCall createTestSubject() {
9                 return new UebHealthCheckCall("mock", "mock");
10         }
11
12         @Test
13         public void testCall() throws Exception {
14                 UebHealthCheckCall testSubject;
15                 Boolean result;
16
17                 // default test
18                 testSubject = createTestSubject();
19                 result = testSubject.call();
20         }
21
22         @Test
23         public void testGetServer() throws Exception {
24                 UebHealthCheckCall testSubject;
25                 String result;
26
27                 // default test
28                 testSubject = createTestSubject();
29                 result = testSubject.getServer();
30         }
31
32         @Test
33         public void testGetCambriaHandler() throws Exception {
34                 UebHealthCheckCall testSubject;
35                 CambriaHandler result;
36
37                 // default test
38                 testSubject = createTestSubject();
39                 result = testSubject.getCambriaHandler();
40         }
41
42         @Test
43         public void testSetCambriaHandler() throws Exception {
44                 UebHealthCheckCall testSubject;
45                 CambriaHandler cambriaHandler = null;
46
47                 // default test
48                 testSubject = createTestSubject();
49                 testSubject.setCambriaHandler(cambriaHandler);
50         }
51 }