Raise JUnit coverage asdctool
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / validator / config / ValidationConfigManagerTest.java
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
59
60         @Test
61         public void testGetOutputFullFilePath() throws Exception {
62         String result;
63         
64         // default test
65         result=ValidationConfigManager.getOutputFullFilePath();
66         }
67
68
69         @Test
70         public void testSetOutputFullFilePath() throws Exception {
71         String outputPath = "";
72         
73         
74         // default test
75         ValidationConfigManager.setOutputFullFilePath(outputPath);
76         }
77 }