b862c8704f7fc9565adfc79c4d154f7510e59c25
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / domain / SubscriberTest.java
1 /*
2 * ============LICENSE_START=======================================================
3  * ONAP : SO
4  * ================================================================================
5  * Copyright (C) 2018 TechMahindra
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19 */
20 package org.onap.so.bpmn.core.domain;
21
22 import static org.junit.Assert.*;
23
24 import org.junit.Test;
25
26 public class SubscriberTest {
27         Subscriber subscriber= new Subscriber("globalId", "name", "commonSiteId");
28
29         @Test
30         public void testSubscriber() {
31                 subscriber.setGlobalId("globalId");
32                 subscriber.setName("name");
33                 subscriber.setCommonSiteId("commonSiteId");
34                 assertEquals(subscriber.getGlobalId(), "globalId");
35                 assertEquals(subscriber.getName(), "name");
36                 assertEquals(subscriber.getCommonSiteId(), "commonSiteId");
37                 
38                 
39         }
40
41 }