Containerization feature of SO
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / domain / AllottedResourceTest.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 AllottedResourceTest {
27         private AllottedResource ar = new AllottedResource();
28
29         @Test
30         public void testAllottedResource() {
31                 ar.setAllottedResourceType("allottedResourceType");
32                 ar.setAllottedResourceRole("allottedResourceRole");
33                 ar.setProvidingServiceModelName("providingServiceModelName");
34                 ar.setProvidingServiceModelInvariantUuid("providingServiceModelInvariantUuid");
35                 ar.setProvidingServiceModelUuid("providingServiceModelUuid");
36                 ar.setNfFunction("nfFunction");
37                 ar.setNfType("nfType");
38                 ar.setNfRole("nfRole");
39                 ar.setNfNamingCode("nfNamingCode");
40                 ar.setOrchestrationStatus("orchestrationStatus");
41                 assertEquals(ar.getAllottedResourceType(), "allottedResourceType");
42                 assertEquals(ar.getAllottedResourceRole(), "allottedResourceRole");
43                 assertEquals(ar.getProvidingServiceModelName(), "providingServiceModelName");
44                 assertEquals(ar.getProvidingServiceModelInvariantUuid(), "providingServiceModelInvariantUuid");
45                 assertEquals(ar.getProvidingServiceModelUuid(), "providingServiceModelUuid");
46                 assertEquals(ar.getNfFunction(), "nfFunction");
47                 assertEquals(ar.getNfType(), "nfType");
48                 assertEquals(ar.getNfRole(), "nfRole");
49                 assertEquals(ar.getNfNamingCode(), "nfNamingCode");
50                 assertEquals(ar.getOrchestrationStatus(), "orchestrationStatus");
51
52         }
53
54 }