Added oparent to sdc main
[sdc.git] / catalog-dao / src / test / java / org / openecomp / sdc / be / resources / data / auditing / model / ResourceVersionInfoTest.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.resources.data.auditing.model;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.be.resources.data.auditing.model.ResourceVersionInfo.Builder;
25
26
27 public class ResourceVersionInfoTest {
28
29         private ResourceVersionInfo createTestSubject() {
30                 Builder newBuilder = ResourceVersionInfo.newBuilder();
31                 return newBuilder.build();
32         }
33
34         
35         @Test
36         public void testNewBuilder() throws Exception {
37                 Builder result;
38
39                 // default test
40                 result = ResourceVersionInfo.newBuilder();
41         }
42
43         @Test
44         public void testArtifactUuid() throws Exception {
45                 Builder result;
46
47                 // default test
48                 result = ResourceVersionInfo.newBuilder();
49                 result.artifactUuid("mock");
50         }
51         
52         @Test
53         public void testState() throws Exception {
54                 Builder result;
55
56                 // default test
57                 result = ResourceVersionInfo.newBuilder();
58                 result.state("mock");
59         }
60         
61         @Test
62         public void testvVersion() throws Exception {
63                 Builder result;
64
65                 // default test
66                 result = ResourceVersionInfo.newBuilder();
67                 result.version("mock");
68         }
69         
70         @Test
71         public void testDistributionStatus() throws Exception {
72                 Builder result;
73
74                 // default test
75                 result = ResourceVersionInfo.newBuilder();
76                 result.distributionStatus("mock");
77         }
78         
79         @Test
80         public void testGetArtifactUuid() throws Exception {
81                 ResourceVersionInfo testSubject;
82                 String result;
83
84                 // default test
85                 testSubject = createTestSubject();
86                 result = testSubject.getArtifactUuid();
87         }
88
89         
90         @Test
91         public void testGetState() throws Exception {
92                 ResourceVersionInfo testSubject;
93                 String result;
94
95                 // default test
96                 testSubject = createTestSubject();
97                 result = testSubject.getState();
98         }
99
100         
101         @Test
102         public void testGetVersion() throws Exception {
103                 ResourceVersionInfo testSubject;
104                 String result;
105
106                 // default test
107                 testSubject = createTestSubject();
108                 result = testSubject.getVersion();
109         }
110
111         
112         @Test
113         public void testGetDistributionStatus() throws Exception {
114                 ResourceVersionInfo testSubject;
115                 String result;
116
117                 // default test
118                 testSubject = createTestSubject();
119                 result = testSubject.getDistributionStatus();
120         }
121 }