1 /*******************************************************************************
2 * Copyright © 2018 IBM.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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 *****************************************************************************
20 package org.onap.portalsdk.analytics.model.search;
22 import static org.junit.Assert.assertEquals;
23 import static org.junit.Assert.assertTrue;
25 import org.junit.Assert;
26 import org.junit.Before;
27 import org.junit.Test;
29 public class SearchResultColumnTest {
30 private SearchResultColumn searchResultColumn;
34 searchResultColumn = new SearchResultColumn( "columnId",
52 public void testAllValues() {
53 Assert.assertEquals("columnTitle", searchResultColumn.getColumnTitle());
54 Assert.assertEquals("columnWidth", searchResultColumn.getColumnWidth());
55 Assert.assertEquals("alignment", searchResultColumn.getAlignment());
56 Assert.assertEquals("linkURL", searchResultColumn.getLinkURL());
57 Assert.assertEquals("linkTitle", searchResultColumn.getLinkTitle());
58 Assert.assertEquals("linkForm", searchResultColumn.getLinkForm());
59 Assert.assertEquals("linkConfirmMsg", searchResultColumn.getLinkConfirmMsg());
60 Assert.assertEquals("linkImg", searchResultColumn.getLinkImg());
61 Assert.assertEquals("linkImgWidth", searchResultColumn.getLinkImgWidth());
62 Assert.assertEquals("linkImgHeight", searchResultColumn.getLinkImgHeight());
63 Assert.assertEquals(true, searchResultColumn.isCopyLink());
64 Assert.assertEquals(false, searchResultColumn.isEditLink());
65 Assert.assertEquals(false, searchResultColumn.isDeleteLink());
66 Assert.assertEquals(true, searchResultColumn.isScheduleLink());