efc7dd82a80ada8609234ef59710ffece6639a8f
[sdc.git] /
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 import org.junit.runner.RunWith;
25 import org.openecomp.sdc.asdctool.impl.validator.utils.ReportManager;
26 import org.powermock.core.classloader.annotations.PrepareForTest;
27 import org.powermock.modules.junit4.PowerMockRunner;
28
29 import java.util.Properties;
30
31 @RunWith(PowerMockRunner.class)
32 @PrepareForTest({ReportManager.class})
33 public class ValidationConfigManagerTest {
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     @Test
52     public void testSetCsvReportFilePath() {
53         String outputPath = "";
54
55         // default test
56         ValidationConfigManager.setCsvReportFilePath(outputPath);
57     }
58
59     @Test
60     public void testGetOutputFullFilePath() throws Exception {
61         String result;
62
63         // default test
64         result = ValidationConfigManager.getOutputFullFilePath();
65     }
66
67     @Test
68     public void testSetOutputFullFilePath() throws Exception {
69         String outputPath = "";
70
71         // default test
72         ValidationConfigManager.setOutputFullFilePath(outputPath);
73     }
74 }