b8f9b8e3e21fb908f58bd38c0eed84f0e6158db9
[so.git] /
1 /*
2  * Copyright (C) 2019 Verizon. All Rights Reserved Licensed under the Apache License, Version 2.0 (the "License"); you
3  * may not use this file except in compliance with the License. You may obtain a copy of the License at
4  *
5  * http://www.apache.org/licenses/LICENSE-2.0
6  *
7  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
8  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
9  * specific language governing permissions and limitations under the License.
10  */
11
12 package org.onap.so.adapters.vfc.model;
13
14 import org.junit.Test;
15 import static org.junit.Assert.*;
16
17 public class VnfLocationConstraintTest {
18     VnfLocationConstraint vnfLocationConstraint = new VnfLocationConstraint();
19
20     @Test
21     public void getVnfProfileId() {
22         vnfLocationConstraint.getVnfProfileId();
23     }
24
25     @Test
26     public void setVnfProfileId() {
27         vnfLocationConstraint.setVnfProfileId("c9f0a95e-dea0-4698-96e5-5a79bc5a233d");
28     }
29
30     @Test
31     public void getLocationConstraints() {
32         vnfLocationConstraint.getLocationConstraints();
33     }
34
35     @Test
36     public void setLocationConstraints() {
37         vnfLocationConstraint.setLocationConstraints(new LocationConstraint());
38     }
39 }