775006bfdcc721d2a09ffc5c0d95871cd94750d0
[sdc.git] /
1 package org.openecomp.sdc.asdctool.impl.validator.config;
2
3 import java.util.Properties;
4
5 import javax.annotation.Generated;
6
7 import org.junit.Test;
8
9
10 public class ValidationConfigManagerTest {
11
12         private ValidationConfigManager createTestSubject() {
13                 return new ValidationConfigManager();
14         }
15
16         
17         @Test
18         public void testGetOutputFilePath() throws Exception {
19                 String result;
20
21                 // default test
22                 result = ValidationConfigManager.getOutputFilePath();
23         }
24
25         
26         @Test
27         public void testSetOutputFilePath() throws Exception {
28                 String outputPath = "";
29
30                 // default test
31                 ValidationConfigManager.setOutputFilePath(outputPath);
32         }
33
34         
35         @Test
36         public void testGetCsvReportFilePath() throws Exception {
37                 String result;
38
39                 // default test
40                 result = ValidationConfigManager.getCsvReportFilePath();
41         }
42
43         
44         @Test
45         public void testSetCsvReportFilePath() throws Exception {
46                 String outputPath = "";
47
48                 // default test
49                 ValidationConfigManager.setCsvReportFilePath(outputPath);
50         }
51
52         
53         @Test
54         public void testSetValidationConfiguration() throws Exception {
55                 String path = "";
56                 Properties result;
57
58                 // default test
59                 result = ValidationConfigManager.setValidationConfiguration(path);
60         }
61
62         
63         @Test
64         public void testGetValidationConfiguration() throws Exception {
65                 Properties result;
66
67                 // default test
68                 result = ValidationConfigManager.getValidationConfiguration();
69         }
70 }