Substitutions substituter = new Substitutions();
substituter.addSubstitution(Substitutions.Type.MESSAGE,
"display_name", displayName);
substituter.addSubstitution(Substitutions.Type.MESSAGE,
"default_value", defaultValue);
substituter.addSubstitution(Substitutions.Type.MESSAGE, "dv", displayValue);
UserPref userPref
= new UserPref(XmlUtil.parse(xml)).substitute(substituter);
assertEquals(displayName, userPref.getDisplayName());
assertEquals(defaultValue, userPref.getDefaultValue());
assertEquals(displayValue, userPref.getEnumValues().get("0"));