84dc214d8e33f1c951b93d3c2dc58eb880aa0523
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / test / java / org / openo / nfvo / jujuvnfmadapter / service / juju / config / ConfigItemTest.java
1 /*
2  * Copyright 2017 Huawei Technologies Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.openo.nfvo.jujuvnfmadapter.service.juju.config;
17
18 import static org.junit.Assert.*;
19
20 import org.junit.Test;
21
22 public class ConfigItemTest {
23
24     @Test
25     public void testsetDefaults() {
26         ConfigItem configItem = new ConfigItem();
27         configItem.setDefaults("");
28         String result = configItem.getDefaults();
29         assertEquals("", result);
30     }
31     @Test
32     public void testsetdescription() {
33         ConfigItem configItem = new ConfigItem();
34         configItem.setDescription("");
35         String result = configItem.getDescription();
36         assertEquals("", result);
37     }
38     @Test
39     public void testsettype() {
40         ConfigItem configItem = new ConfigItem();
41         configItem.setType("");
42         String result = configItem.getType();
43         assertEquals("", result);
44     }
45 }