29825a6e6046a710fd64860f66765125a58361d8
[sdc.git] /
1 package org.openecomp.sdc.be.externalapi.servlet.representation;
2
3 import java.util.List;
4
5 import javax.annotation.Generated;
6
7 import org.junit.Test;
8
9
10 public class ServiceAssetDetailedMetadataTest {
11
12         private ServiceAssetDetailedMetadata createTestSubject() {
13                 return new ServiceAssetDetailedMetadata();
14         }
15
16         
17         @Test
18         public void testGetLastUpdaterFullName() throws Exception {
19                 ServiceAssetDetailedMetadata testSubject;
20                 String result;
21
22                 // default test
23                 testSubject = createTestSubject();
24                 result = testSubject.getLastUpdaterFullName();
25         }
26
27         
28         @Test
29         public void testSetLastUpdaterFullName() throws Exception {
30                 ServiceAssetDetailedMetadata testSubject;
31                 String lastUpdaterFullName = "";
32
33                 // default test
34                 testSubject = createTestSubject();
35                 testSubject.setLastUpdaterFullName(lastUpdaterFullName);
36         }
37
38         
39         @Test
40         public void testGetResources() throws Exception {
41                 ServiceAssetDetailedMetadata testSubject;
42                 List<ResourceInstanceMetadata> result;
43
44                 // default test
45                 testSubject = createTestSubject();
46                 result = testSubject.getResources();
47         }
48
49         
50         @Test
51         public void testSetResources() throws Exception {
52                 ServiceAssetDetailedMetadata testSubject;
53                 List<ResourceInstanceMetadata> resources = null;
54
55                 // default test
56                 testSubject = createTestSubject();
57                 testSubject.setResources(resources);
58         }
59
60         
61         @Test
62         public void testGetArtifacts() throws Exception {
63                 ServiceAssetDetailedMetadata testSubject;
64                 List<ArtifactMetadata> result;
65
66                 // default test
67                 testSubject = createTestSubject();
68                 result = testSubject.getArtifacts();
69         }
70
71         
72         @Test
73         public void testSetArtifacts() throws Exception {
74                 ServiceAssetDetailedMetadata testSubject;
75                 List<ArtifactMetadata> artifacts = null;
76
77                 // default test
78                 testSubject = createTestSubject();
79                 testSubject.setArtifacts(artifacts);
80         }
81 }