Description
For consistency, RuntimeInstance.getProperty() should return the values previously set with setProperty() event when it hasn't already been initialized.
runtimeInstance.setProperty("foo","bar");
System.out.println(runtimeInstance.getProperty("foo")); // output "null"
runtimeInstance.init();
System.out.println(runtimeInstance.getProperty("foo")); // output "bar"