16d8298fbb449ca2bebf148209dca538c35e3128
[sdc.git] /
1 package org.openecomp.sdc.be.components.distribution.engine;
2
3 import org.junit.Test;
4
5 public class DmaapNotificationDataImplTest {
6
7         private DmaapNotificationDataImpl createTestSubject() {
8                 return new DmaapNotificationDataImpl();
9         }
10
11         @Test
12         public void testGetOperationalEnvironmentId() throws Exception {
13                 DmaapNotificationDataImpl testSubject;
14                 String result;
15
16                 // default test
17                 testSubject = createTestSubject();
18                 result = testSubject.getOperationalEnvironmentId();
19         }
20
21         @Test
22         public void testGetOperationalEnvironmentName() throws Exception {
23                 DmaapNotificationDataImpl testSubject;
24                 String result;
25
26                 // default test
27                 testSubject = createTestSubject();
28                 result = testSubject.getOperationalEnvironmentName();
29         }
30
31         @Test
32         public void testGetTenantContext() throws Exception {
33                 DmaapNotificationDataImpl testSubject;
34                 String result;
35
36                 // default test
37                 testSubject = createTestSubject();
38                 result = testSubject.getTenantContext();
39         }
40 }