" <EnumValue value=\"0\" display_value=\"__MSG_dv__\"/>" +
"</UserPref>";
String displayName = "This is the display name";
String defaultValue = "This is the default value";
String displayValue = "This is the display value";
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"));