*/
@Test
public void testReplacePlaceholdersEL_2() {
Map<String, Attribute> attributes = new HashMap<String, Attribute>();
Attribute attribute = new Attribute("some-${requestScope.someVariable}-other-{1}-${requestScope.someOtherVariable}.jsp");
attribute.setExpressionObject(new Expression((String)attribute.getValue()));
attributes.put("something", attribute);
Definition definition = new Definition("definitionName", new Attribute("template"), attributes);
Definition nudef = PatternUtil.replacePlaceholders(definition, "nudef", "value0", "value1", "value2", "value3");
assertEquals("nudef", nudef.getName());