Refactoring Consolidation Service
[sdc.git] / common-app-api / src / test / java / org / openecomp / sdc / common / api / YamlSuffixEnumTest.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 YamlSuffixEnumTest {
9
10         private YamlSuffixEnum createTestSubject() {
11                 return YamlSuffixEnum.YAML;
12         }
13
14         
15         @Test
16         public void testGetSuffix() throws Exception {
17                 YamlSuffixEnum testSubject;
18                 String result;
19
20                 // default test
21                 testSubject = createTestSubject();
22                 result = testSubject.getSuffix();
23         }
24
25         
26         @Test
27         public void testSetSuufix() throws Exception {
28                 YamlSuffixEnum testSubject;
29                 String suffix = "";
30
31                 // default test
32                 testSubject = createTestSubject();
33                 testSubject.setSuufix(suffix);
34         }
35
36         
37         @Test
38         public void testGetSuffixes() throws Exception {
39                 List<String> result;
40
41                 // default test
42                 result = YamlSuffixEnum.getSuffixes();
43         }
44 }