/**
* Tests whether a lost write method is automatically recovered and can be invoked.
*/
public void testWriteMethodRecover() throws Exception {
FluentIntrospectionTestBean bean = clearWriteMethodRef();
final String value = "Test value";
pub.setProperty(bean, TEST_PROP, value);
assertEquals("Property not set", value, bean.getFluentGetProperty());
}