@Test
public void convert_servletContextToTarget_hasConverter() throws Exception
{
final JavaBean bean=new JavaBean();
converter.addConverter(ServletContext.class, JavaBean.class, new Converter()
{
@SuppressWarnings("unchecked")
public <T> T convert(Object sourceObj, Type targetType) throws ConvertException
{
return (T)bean;