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