Skip to content
Snippets Groups Projects
Commit 805fd5b3 authored by david_williams's avatar david_williams
Browse files

283792 read properties for versioning tests

parent e97d05ce
No related branches found
No related tags found
No related merge requests found
......@@ -491,11 +491,11 @@ public class BuildTests extends TestCase {
try {
propertyStream = new FileInputStream(propFile);
testProperties.load(propertyStream);
qualifierArg = (String) testProperties.get("qualifierArgValue");
testToReferenceArg = (String) testProperties.get("testToReferenceArgValue");
referenceIDArg = (String) testProperties.get("referenceIDArgValue");
referenceURLArg = (String) testProperties.get("referenceURLArgValue");
listToReferenceFileArg = (String) testProperties.get("listToReferenceFileArgValue");
qualifierArg = (String) testProperties.getProperty("qualifierArgValue", "");
testToReferenceArg = (String) testProperties.getProperty("testToReferenceArgValue", TEST_TO_REFERENCE);
referenceIDArg = (String) testProperties.getProperty("referenceIDArgValue", "");
referenceURLArg = (String) testProperties.getProperty("referenceURLArgValue", "");
listToReferenceFileArg = (String) testProperties.getProperty("listToReferenceFileArgValue", LIST_TO_REFERENCE_FILE);
}
catch (FileNotFoundException e) {
// just use defaults
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment