Update license; improve coverage; add docs dir
[portal.git] / ecomp-portal-BE-common / src / test / java / org / openecomp / portalapp / portal / model / AppContactUsItemTest.java
1 /*-
2  * ============LICENSE_START==========================================
3  * ONAP Portal
4  * ===================================================================
5  * Copyright © 2017 AT&T Intellectual Property. All rights reserved.
6  * ===================================================================
7  *
8  * Unless otherwise specified, all software contained herein is licensed
9  * under the Apache License, Version 2.0 (the “License”);
10  * you may not use this software except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  *             http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  *
21  * Unless otherwise specified, all documentation contained herein is licensed
22  * under the Creative Commons License, Attribution 4.0 Intl. (the “License”);
23  * you may not use this documentation except in compliance with the License.
24  * You may obtain a copy of the License at
25  *
26  *             https://creativecommons.org/licenses/by/4.0/
27  *
28  * Unless required by applicable law or agreed to in writing, documentation
29  * distributed under the License is distributed on an "AS IS" BASIS,
30  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
31  * See the License for the specific language governing permissions and
32  * limitations under the License.
33  *
34  * ============LICENSE_END============================================
35  *
36  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
37  */
38 package org.openecomp.portalapp.portal.model;
39
40 import static org.junit.Assert.assertEquals;
41 import static org.junit.Assert.assertTrue;
42
43 import org.junit.Test;
44 import org.openecomp.portalapp.portal.ecomp.model.AppContactUsItem;
45
46 public class AppContactUsItemTest {
47         
48         public AppContactUsItem mockAppContactUsItem(){
49                 AppContactUsItem appContactUsItem = new AppContactUsItem();
50                                 
51                 appContactUsItem.setAppId((long)1);
52                 appContactUsItem.setAppName("test");
53                 appContactUsItem.setDescription("test");
54                 appContactUsItem.setContactName("test");
55                 appContactUsItem.setContactEmail("test");
56                 appContactUsItem.setUrl("test");
57                 appContactUsItem.setActiveYN("test");
58                 
59                 return appContactUsItem;
60         }
61
62         @Test
63         public void appContactUsItemTest(){
64                 AppContactUsItem appContactUsItem = mockAppContactUsItem();
65                 
66                 AppContactUsItem appContactUsItem1 = new AppContactUsItem();
67                 appContactUsItem1.setAppId((long)1);
68                 appContactUsItem1.setAppName("test");
69                 appContactUsItem1.setDescription("test");
70                 appContactUsItem1.setContactName("test");
71                 appContactUsItem1.setContactEmail("test");
72                 appContactUsItem1.setUrl("test");
73                 appContactUsItem1.setActiveYN("test");
74                 
75                 assertEquals(appContactUsItem.getAppId(), appContactUsItem1.getAppId());
76                 assertEquals(appContactUsItem.getAppName(), appContactUsItem1.getAppName());
77                 assertEquals(appContactUsItem.getDescription(), appContactUsItem1.getDescription());
78                 assertEquals(appContactUsItem.getContactName(), appContactUsItem1.getContactName());
79                 assertEquals(appContactUsItem.getContactEmail(), appContactUsItem1.getContactEmail());
80                 assertEquals(appContactUsItem.getUrl(), appContactUsItem1.getUrl());
81                 assertEquals(appContactUsItem.getActiveYN(), appContactUsItem1.getActiveYN());
82                 assertEquals(appContactUsItem.toString(), "AppContactUsItem [appId=1, appName=test, description=test, contactName=test, contactEmail=test, url=test, activeYN=test]");
83                 assertEquals(appContactUsItem.hashCode(), appContactUsItem1.hashCode());
84                 assertTrue(appContactUsItem.equals(appContactUsItem1));
85         }
86 }