Refactoring Consolidation Service
[sdc.git] / common-app-api / src / test / java / org / openecomp / sdc / common / api / ArtifactTypeEnumTest.java
1 package org.openecomp.sdc.common.api;
2
3 import java.util.List;
4
5 import org.junit.Test;
6
7
8 public class ArtifactTypeEnumTest {
9
10         private ArtifactTypeEnum createTestSubject() {
11                 return ArtifactTypeEnum.AAI_SERVICE_MODEL;
12         }
13
14         
15         @Test
16         public void testGetType() throws Exception {
17                 ArtifactTypeEnum testSubject;
18                 String result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.getType();
23         }
24
25         
26         @Test
27         public void testSetType() throws Exception {
28                 ArtifactTypeEnum testSubject;
29                 String type = "";
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setType(type);
34         }
35
36         
37         @Test
38         public void testFindType() throws Exception {
39                 String type = "";
40                 ArtifactTypeEnum result;
41
42                 // default test
43                 result = ArtifactTypeEnum.findType(type);
44         }
45
46         
47         @Test
48         public void testGetAllTypes() throws Exception {
49                 List<String> result;
50
51                 // default test
52                 result = ArtifactTypeEnum.getAllTypes();
53         }
54 }