Added oparent to sdc main
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / ArtifactTypeTest.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 ArtifactTypeTest {
27
28         private ArtifactType createTestSubject() {
29                 return new ArtifactType();
30         }
31
32         @Test
33         public void testGetName() throws Exception {
34                 ArtifactType 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                 ArtifactType 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                 ArtifactType 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                 ArtifactType testSubject;
65                 Object obj = null;
66                 boolean result;
67
68                 // test 1
69                 testSubject = createTestSubject();
70                 result = testSubject.equals(obj);
71                 obj = new Object();
72                 result = testSubject.equals(obj);
73                 Assert.assertEquals(false, result);
74                 result = testSubject.equals(createTestSubject());
75                 Assert.assertEquals(false, result);
76                 result = testSubject.equals(testSubject);
77                 Assert.assertEquals(true, result);
78                 testSubject.setName("mock");
79                 ArtifactType createTestSubject = createTestSubject();
80                 createTestSubject.setName("mock");
81                 result = testSubject.equals(createTestSubject);
82                 Assert.assertEquals(true, result);
83                 createTestSubject.setName("mock2");
84                 result = testSubject.equals(createTestSubject);
85                 Assert.assertEquals(false, result);
86         }
87 }