Added oparent to sdc main
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / TagTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.be.model;
22
23 import org.junit.Assert;
24 import org.junit.Test;
25
26 public class TagTest {
27
28         private Tag createTestSubject() {
29                 return new Tag();
30         }
31
32         @Test
33         public void testGetName() throws Exception {
34                 Tag testSubject;
35                 String result;
36
37                 // default test
38                 testSubject = createTestSubject();
39                 result = testSubject.getName();
40         }
41
42         @Test
43         public void testSetName() throws Exception {
44                 Tag testSubject;
45                 String name = "";
46
47                 // default test
48                 testSubject = createTestSubject();
49                 testSubject.setName(name);
50         }
51
52         @Test
53         public void testHashCode() throws Exception {
54                 Tag testSubject;
55                 int result;
56
57                 // default test
58                 testSubject = createTestSubject();
59                 result = testSubject.hashCode();
60         }
61
62         @Test
63         public void testEquals() throws Exception {
64                 Tag testSubject;
65                 Object obj = null;
66                 boolean result;
67
68                 // test 1
69                 testSubject = createTestSubject();
70                 result = testSubject.equals(obj);
71                 Assert.assertEquals(false, result);
72                 obj = new Object();
73                 result = testSubject.equals(obj);
74                 Assert.assertEquals(false, result);
75                 result = testSubject.equals(testSubject);
76                 Assert.assertEquals(true, result);
77                 
78                 Tag createTestSubject = createTestSubject();
79                 result = testSubject.equals(createTestSubject);
80                 Assert.assertEquals(false, result);
81                 testSubject.setName("mock");
82                 result = testSubject.equals(createTestSubject);
83                 Assert.assertEquals(false, result);
84                 createTestSubject.setName("mock");
85                 result = testSubject.equals(createTestSubject);
86                 Assert.assertEquals(true, result);
87         }
88 }