Added oparent to sdc main
[sdc.git] / asdctool / src / test / java / org / openecomp / sdc / asdctool / impl / validator / config / ValidationConfigManagerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.asdctool.impl.validator.config;
22
23 import org.junit.Test;
24
25 import java.util.Properties;
26
27
28 public class ValidationConfigManagerTest {
29
30         private ValidationConfigManager createTestSubject() {
31                 return new ValidationConfigManager();
32         }
33
34         
35         @Test
36         public void testGetOutputFilePath() {
37                 String result;
38
39                 // default test
40                 result = ValidationConfigManager.getOutputFilePath();
41         }
42         
43         @Test
44         public void testGetCsvReportFilePath() {
45                 String result;
46
47                 // default test
48                 result = ValidationConfigManager.getCsvReportFilePath();
49         }
50
51         
52         @Test
53         public void testSetCsvReportFilePath() {
54                 String outputPath = "";
55
56                 // default test
57                 ValidationConfigManager.setCsvReportFilePath(outputPath);
58         }
59
60         
61         @Test
62         public void testSetValidationConfiguration() {
63                 String path = "";
64                 Properties result;
65
66                 // default test
67                 result = ValidationConfigManager.setValidationConfiguration(path);
68         }
69
70         
71         @Test
72         public void testGetValidationConfiguration() {
73                 Properties result;
74
75                 // default test
76                 result = ValidationConfigManager.getValidationConfiguration();
77         }
78
79
80         @Test
81         public void testGetOutputFullFilePath() throws Exception {
82         String result;
83         
84         // default test
85         result=ValidationConfigManager.getOutputFullFilePath();
86         }
87
88
89         @Test
90         public void testSetOutputFullFilePath() throws Exception {
91         String outputPath = "";
92         
93         
94         // default test
95         ValidationConfigManager.setOutputFullFilePath(outputPath);
96         }
97 }