ac1a6d335a76024056a8f7bbe9e321486c750d8d
[cli.git] / framework / src / test / java / org / onap / cli / fw / output / OnapCommandResultAttributeScopeTest.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
17 package org.onap.cli.fw.output;
18
19 import static org.junit.Assert.assertTrue;
20
21 import org.junit.Test;
22 import org.onap.cli.fw.input.ParameterType;
23
24 import java.util.Collections;
25
26 public class OnapCommandResultAttributeScopeTest {
27     @Test
28     public void onapCommandResultAttributeTest() {
29         OnapCommandResultAttribute att = new OnapCommandResultAttribute();
30         att.setDescription("description");
31         att.setName("name");
32         att.setScope(OnapCommandResultAttributeScope.LONG);
33         att.setSecured(true);
34         att.setType(ParameterType.LONG);
35         att.setValues(Collections.emptyList());
36         assertTrue("description".equals(att.getDescription()) && "name".equals(att.getName())
37                 && OnapCommandResultAttributeScope.LONG.equals(att.getScope())
38                 && ParameterType.LONG.equals(att.getType()) && att.getValues().isEmpty());
39     }
40
41 }