/**
* Test method for {@link org.apache.tiles.el.ELContextImpl#setFunctionMapper(javax.el.FunctionMapper)}.
*/
@Test
public void testSetFunctionMapper() {
FunctionMapper functionMapper = createMock(FunctionMapper.class);
replay(resolver, functionMapper);
context.setFunctionMapper(functionMapper);
assertEquals(functionMapper, context.getFunctionMapper());
verify(resolver, functionMapper);