1 package org.openecomp.sdc.asdctool.impl.validator.config;
3 import java.util.Properties;
8 public class ValidationConfigManagerTest {
10 private ValidationConfigManager createTestSubject() {
11 return new ValidationConfigManager();
16 public void testGetOutputFilePath() throws Exception {
20 result = ValidationConfigManager.getOutputFilePath();
24 public void testGetCsvReportFilePath() throws Exception {
28 result = ValidationConfigManager.getCsvReportFilePath();
33 public void testSetCsvReportFilePath() throws Exception {
34 String outputPath = "";
37 ValidationConfigManager.setCsvReportFilePath(outputPath);
42 public void testSetValidationConfiguration() throws Exception {
47 result = ValidationConfigManager.setValidationConfiguration(path);
52 public void testGetValidationConfiguration() throws Exception {
56 result = ValidationConfigManager.getValidationConfiguration();