src/main/java/com/atlassian/uwc/exporters/PmwikiExporterTest.java [75:88]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	private Properties loadSettingsFromFile(String testpropslocation) {
		Properties props = new Properties();
		String filepath = "sampleData/pmwiki/junit_resources/" + testpropslocation;
		try {
			props.load(new FileInputStream(filepath));
		} catch (IOException e) {
			String message = "Make sure that the file '" + filepath + "' exists, and contains" +
					" db properties for test database. ";
			log.error(message);
			e.printStackTrace();
			fail(message);
		}
		return props;
	}	
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/atlassian/uwc/exporters/SMFExporterTest.java [1079:1092]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	private Properties loadSettingsFromFile(String testpropslocation) {
		Properties props = new Properties();
		String filepath = "sampleData/smf/junit_resources/" + testpropslocation;
		try {
			props.load(new FileInputStream(filepath));
		} catch (IOException e) {
			String message = "Make sure that the file '" + filepath + "' exists, and contains" +
					" db properties for test database. ";
			log.error(message);
			e.printStackTrace();
			fail(message);
		}
		return props;
	}	
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



