re base code
[sdc.git] / common-app-api / src / test / java / org / openecomp / sdc / common / api / ArtifactGroupTypeEnumTest.java
1 package org.openecomp.sdc.common.api;
2
3 import org.junit.Test;
4
5 import java.util.List;
6
7
8 public class ArtifactGroupTypeEnumTest {
9
10         private ArtifactGroupTypeEnum createTestSubject() {
11                 return  ArtifactGroupTypeEnum.DEPLOYMENT;
12         }
13
14         
15         @Test
16         public void testGetType() throws Exception {
17                 ArtifactGroupTypeEnum 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                 ArtifactGroupTypeEnum testSubject;
29                 String type = "";
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setType(ArtifactGroupTypeEnum.DEPLOYMENT.getType());
34         }
35
36         
37         @Test
38         public void testFindType() throws Exception {
39                 String type = "";
40                 ArtifactGroupTypeEnum result;
41
42                 // default test
43                 result = ArtifactGroupTypeEnum.findType(type);
44         }
45
46         
47         @Test
48         public void testGetAllTypes() throws Exception {
49                 List<String> result;
50
51                 // default test
52                 result = ArtifactGroupTypeEnum.getAllTypes();
53         }
54 }